/* Base styles */
:root {
  --primary-color: #00897b;
  --primary-dark: #005b4f;
  --primary-light: #4db6ac;
  --secondary-color: #ffa000;
  --secondary-dark: #c67100;
  --secondary-light: #ffd149;
  --text-dark: #263238;
  --text-light: #fafafa;
  --text-medium: #546e7a;
  --gray-light: #eceff1;
  --gray-medium: #cfd8dc;
  --gray-dark: #90a4ae;
  --success-color: #43a047;
  --error-color: #e53935;
  --warning-color: #ffb300;
  --info-color: #039be5;
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
  --font-main: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 700;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-dark);
}

.btn-cookie {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.btn-cookie.accept {
  background-color: var(--success-color);
  color: var(--text-light);
}

.btn-cookie.customize {
  background-color: var(--gray-medium);
  color: var(--text-dark);
}

.btn-cookie.decline {
  background-color: var(--error-color);
  color: var(--text-light);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 3rem;
}

nav ul li a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition-speed);
  padding: 0.5rem 0;
  position: relative;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 2.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 15rem 0 10rem;
  background-color: var(--gray-light);
  background-image: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, rgba(0, 137, 123, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-medium);
  max-width: 700px;
}

/* Features Section */
.features {
  padding: 8rem 0;
  background-color: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: transform var(--transition-speed);
  background-color: var(--gray-light);
  box-shadow: var(--box-shadow);
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.feature-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.feature-item p {
  font-size: 1.6rem;
  color: var(--text-medium);
}

/* Latest Posts Section */
.latest-posts {
  padding: 8rem 0;
  background-color: var(--gray-light);
}

.latest-posts h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.post-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.post-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.view-all {
  text-align: center;
}

/* Terminology Section */
.terminology {
  padding: 8rem 0;
  background-color: #fff;
}

.terminology h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.term-item {
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: var(--gray-light);
}

.term-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.term-item p {
  font-size: 1.6rem;
  color: var(--text-medium);
}

/* Fun Fact Section */
.fun-fact {
  padding: 5rem 0;
  background-color: var(--gray-light);
}

.fact-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.fact-box h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.fact-box p {
  font-size: 1.8rem;
}

/* Page Header */
.page-header {
  padding: 12rem 0 6rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts {
  padding: 8rem 0;
  background-color: #fff;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.post-item {
  display: flex;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-item .post-image {
  flex: 0 0 40%;
  height: auto;
}

.post-item .post-content {
  flex: 1;
  padding: 3rem;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--text-medium);
}

.post-item h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.post-item p {
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* Newsletter Section */
.newsletter {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.newsletter p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

/* About Intro Section */
.about-intro {
  padding: 8rem 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-image {
  flex: 0 0 40%;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 2.5rem;
  color: var(--text-medium);
}

/* Team Section */
.team {
  padding: 8rem 0;
  background-color: var(--gray-light);
}

.team h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.team-member {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  font-size: 2.2rem;
  margin: 2rem 0 0.5rem;
}

.team-member p {
  padding: 0 2rem 2rem;
  color: var(--text-medium);
}

.team-member p:first-of-type {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Values Section */
.values {
  padding: 8rem 0;
  background-color: #fff;
}

.values h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.value-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: var(--gray-light);
}

.value-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.value-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.value-item p {
  color: var(--text-medium);
}

/* Partners Section */
.partners {
  padding: 8rem 0;
  background-color: var(--gray-light);
}

.partners h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.partners-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner-logo {
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 200px;
}

.partner-logo img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

/* Contact Info Section */
.contact-info {
  padding: 8rem 0;
  background-color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.contact-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: var(--gray-light);
}

.contact-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-card p {
  color: var(--text-medium);
}

/* Contact Form Section */
.contact-form-section {
  padding: 8rem 0;
  background-color: var(--gray-light);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.form-heading h2 {
  margin-bottom: 1.5rem;
}

.form-heading p {
  color: var(--text-medium);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.form-group.form-checkbox input {
  margin-top: 0.3rem;
}

.form-group.form-checkbox label {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Map Section */
.map-section {
  padding: 8rem 0;
  background-color: #fff;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background-color: var(--gray-light);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.faq-toggle {
  font-size: 1.6rem;
  color: var(--primary-color);
  transition: transform var(--transition-speed);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Blog Post Page */
.blog-post {
  padding: 12rem 0 8rem;
  background-color: #fff;
}

.post-header {
  margin-bottom: 4rem;
}

.post-header h1 {
  font-size: 4.2rem;
  line-height: 1.2;
}

.post-header .post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  color: var(--text-medium);
}

.post-featured-image {
  margin-bottom: 4rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-body {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.post-body h2 {
  font-size: 3rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.post-body h3 {
  font-size: 2.4rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-body ul, .post-body ol {
  margin-bottom: 2.5rem;
}

.post-body li {
  margin-bottom: 0.8rem;
}

.post-body img {
  margin: 3rem 0;
  border-radius: var(--border-radius);
}

.post-quote {
  margin: 4rem 0;
  padding: 3rem;
  background-color: var(--gray-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-quote blockquote {
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.6;
}

.post-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tag {
  padding: 0.6rem 1.2rem;
  background-color: var(--gray-light);
  border-radius: 3rem;
  font-size: 1.4rem;
  color: var(--text-medium);
  transition: background-color var(--transition-speed);
}

.tag:hover {
  background-color: var(--gray-medium);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-medium);
}

.post-share span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
}

.post-share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--gray-light);
  border-radius: 50%;
  color: var(--text-medium);
  transition: all var(--transition-speed);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.post-author-bio {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;
  padding: 3rem;
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
}

.author-image {
  flex: 0 0 120px;
}

.author-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.author-info h4 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.related-posts {
  padding-top: 4rem;
  border-top: 1px solid var(--gray-medium);
}

.related-posts h2 {
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.related-post {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}

.related-post:hover {
  transform: translateY(-5px);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h3 {
  padding: 1.5rem;
  font-size: 1.8rem;
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 8rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 2rem;
}

.footer-logo p {
  color: var(--gray-medium);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--gray-medium);
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  margin-bottom: 1rem;
  color: var(--gray-medium);
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-light);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  transition: all var(--transition-speed);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-medium);
  font-size: 1.4rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 2rem;
  z-index: 1100;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-content p {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
}

.cookie-more {
  color: var(--primary-light);
  text-decoration: underline;
  align-self: flex-start;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-medium);
  cursor: pointer;
}

.thank-you-message {
  padding: 5rem 3rem;
  text-align: center;
}

.thank-you-message i {
  font-size: 6rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.thank-you-message h3 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 3rem;
  color: var(--text-medium);
}

/* Tabular data */
.tco-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  font-size: 1.6rem;
}

.tco-table th, .tco-table td {
  padding: 1.2rem;
  border: 1px solid var(--gray-medium);
  text-align: left;
}

.tco-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
}

.tco-table tr:nth-child(even) {
  background-color: var(--gray-light);
}

.tco-table tr:last-child {
  font-weight: 700;
  background-color: var(--primary-light);
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 57.5%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 1.5rem 0;
  }
  
  .hero {
    padding: 12rem 0 8rem;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .post-item {
    flex-direction: column;
  }
  
  .post-item .post-image {
    flex: 0 0 100%;
    height: 250px;
  }
  
  .post-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero h2 {
    font-size: 2.8rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
  }
  
  .post-header h1 {
    font-size: 3.5rem;
  }
  
  .post-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .tco-table {
    font-size: 1.4rem;
  }
  
  .tco-table th, .tco-table td {
    padding: 0.8rem;
  }
}
