/* Base Styles */
:root {
  --primary-color: #005f73;
  --secondary-color: #0a9396;
  --accent-color: #ee9b00;
  --light-color: #e9ecef;
  --dark-color: #1a1a2e;
  --grey-color: #495057;
  --light-grey: #dee2e6;
  --success-color: #38b000;
  --warning-color: #ffaa00;
  --error-color: #d62828;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --radius: 5px;
  --max-width: 1200px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #f8f9fa;
  font-size: 16px;
}

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

a:hover {
  color: var(--secondary-color);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, 
select, 
textarea, 
button {
  font: inherit;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-color);
}

.font-size-btn button {
  background-color: var(--light-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.font-size-btn button:hover {
  background-color: var(--light-grey);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
  background-color: #f0f7f8;
  background-image: linear-gradient(135deg, #f0f7f8 0%, #d9f0f3 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Featured Posts Section */
.featured-posts {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.featured-posts h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.read-more:hover {
  color: var(--secondary-color);
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

.view-all a {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.view-all a:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Services Section */
.services {
  padding: 4rem 1rem;
  background-color: #f8f9fa;
}

.services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.services h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonials h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding: 1rem 0;
}

.testimonial {
  scroll-snap-align: start;
  min-width: 300px;
  flex: 1 0 300px;
}

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-content:before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--light-grey);
  font-family: Georgia, serif;
  opacity: 0.3;
}

.client-info {
  margin-top: 1.5rem;
  border-top: 1px solid var(--light-grey);
  padding-top: 1rem;
}

.client-info h4 {
  margin-bottom: 0.2rem;
}

.client-info p {
  color: var(--grey-color);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 1rem;
  background-color: var(--primary-color);
  color: white;
}

.newsletter-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter-form button {
  background-color: var(--accent-color);
  color: white;
  padding: 0 1.5rem;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #d68a00;
}

/* Footer Styles */
footer {
  background-color: #1a1a2e;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 150px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3:after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  margin-top: 0.5rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: var(--light-grey);
}

.footer-column a:hover {
  color: white;
}

address p {
  color: var(--light-grey);
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-grey);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}

#acceptCookies {
  background-color: var(--success-color);
  color: white;
}

#customizeCookies {
  background-color: var(--light-color);
  color: var(--dark-color);
}

#rejectCookies {
  background-color: transparent;
  border: 1px solid var(--light-color);
  color: white;
}

.cookie-more-info {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-more-info a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Tooltip Styles */
.tooltip {
  position: absolute;
  background-color: var(--dark-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Blog Page Styles */
.blog-header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: #f0f7f8;
}

.blog-header h1 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.blog-posts {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.post {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-image {
  flex: 1 1 300px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  flex: 2 1 400px;
  padding: 2rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--grey-color);
  font-size: 0.9rem;
}

.read-more-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.read-more-btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

.blog-newsletter {
  margin-top: 2rem;
}

/* Article Page Styles */
.article-main {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
  gap: 2rem;
}

.blog-article {
  flex: 1 1 700px;
}

.article-header {
  margin-bottom: 2rem;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--grey-color);
  font-size: 0.9rem;
}

.article-featured-image {
  margin-bottom: 2rem;
}

.article-featured-image img {
  width: 100%;
  border-radius: var(--radius);
}

.article-content {
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--secondary-color);
}

.article-content ul, 
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content ul li, 
.article-content ol li {
  margin-bottom: 0.5rem;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-grey);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  background-color: var(--light-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.share-article h3 {
  margin-bottom: 1rem;
}

.social-share {
  display: flex;
  gap: 1rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--dark-color);
  transition: var(--transition);
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.article-sidebar {
  flex: 0 1 350px;
}

.related-posts {
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.related-posts h3 {
  margin-bottom: 1.5rem;
  position: relative;
}

.related-posts h3:after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  margin-top: 0.5rem;
}

.related-post {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.related-post:last-child {
  margin-bottom: 0;
}

.related-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-right: 1rem;
}

.related-post h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.cta-box {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.cta-box h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box .cta-button {
  background-color: white;
  color: var(--primary-color);
  margin-top: 1rem;
}

.cta-box .cta-button:hover {
  background-color: var(--accent-color);
  color: white;
}

.article-newsletter {
  margin-top: 4rem;
}

/* About Page Styles */
.about-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
  gap: 2rem;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 400px;
}

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

.our-mission {
  background-color: #f0f7f8;
  padding: 4rem 1rem;
}

.our-mission h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.our-mission h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mission-item {
  flex: 1 1 300px;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.mission-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.team-section {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.team-section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

.team-member {
  text-align: center;
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-bottom: 1.5rem;
}

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

.team-member h3 {
  margin: 1.5rem 0 0.3rem;
}

.team-member p {
  margin: 0 1.5rem 0.5rem;
}

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

.member-social {
  justify-content: center;
  margin-top: 1rem;
}

.why-choose-us {
  padding: 4rem 1rem;
  background-color: #f0f7f8;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.why-choose-us h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-testimonials {
  padding-bottom: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.cta-section {
  padding: 4rem 1rem;
  background-color: var(--primary-color);
  color: white;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-content .cta-button {
  background-color: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-content .cta-button:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Contact Page Styles */
.contact-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: #f0f7f8;
}

.contact-hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-form-section {
  flex: 1 1 500px;
}

.contact-form-section h2,
.contact-info-section h2 {
  margin-bottom: 2rem;
  position: relative;
}

.contact-form-section h2:after,
.contact-info-section h2:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  margin-top: 0.5rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(10, 147, 150, 0.2);
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
}

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

.contact-info-section {
  flex: 1 1 300px;
}

.contact-info {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-icon {
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

.social-connect h3 {
  margin-bottom: 1rem;
}

.contact-social {
  margin-top: 0.5rem;
}

.map-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.map-section h2 {
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.map-section h2:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

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

.faq-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.faq-section h2:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.5rem auto 0;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 1rem;
}

.close-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  margin-top: 1.5rem;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .services-grid,
  .features-grid,
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--radius);
  }
  
  .footer-container {
    flex-direction: column;
  }
  
  .post {
    flex-direction: column;
  }
  
  .contact-social {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* Font Size Adjustment */
body.larger-font {
  font-size: 18px;
}

body.larger-font h1 {
  font-size: 2.8rem;
}

body.larger-font h2 {
  font-size: 2.3rem;
}

body.larger-font h3 {
  font-size: 1.8rem;
}

body.larger-font .nav-links a {
  font-size: 1.1rem;
}
