/* Base Styles */
:root {
  --primary-color: #3a86ff;
  --primary-dark: #2968c8;
  --secondary-color: #ff006e;
  --accent-color: #8338ec;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #fff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn.primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-family: var(--font-primary);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero h2 {
  font-size: 1.75rem;
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

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

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

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-card .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Expert Interview Section */
.expert-interview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.expert-interview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.interview-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.expert-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.expert-text {
  flex: 2;
}

.interview-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.expert-position {
  color: var(--gray-color);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  font-style: italic;
}

.question {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.answer {
  margin-bottom: 1.5rem;
}

/* Latest Blog Section */
.latest-blog {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.view-all {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.view-all::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.view-all:hover::after {
  transform: translateX(5px);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

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

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

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: var(--dark-color);
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.date {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.excerpt {
  margin-bottom: 15px;
  color: var(--gray-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.read-more {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}

.read-more svg {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* About Page */
.about-story {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: center;
}

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

.mission-vision {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-block, .vision-block {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-block .icon, .vision-block .icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.values {
  padding: 80px 0;
}

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

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

.value-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

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

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

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member h3 {
  padding: 20px 20px 5px;
  margin-bottom: 0;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-primary);
}

.member-social {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.member-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 50%;
  color: var(--gray-color);
  transition: var(--transition);
}

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

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

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

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn.primary {
  background-color: white;
  color: var(--primary-color);
}

.cta-section .btn.primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn.secondary {
  border-color: white;
  color: white;
}

.cta-section .btn.secondary:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Blog Page */
.blog-content {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.blog-card .blog-image {
  height: 100%;
}

.blog-card-content {
  padding: 30px 30px 30px 0;
}

.blog-category {
  display: inline-block;
  padding: 5px 12px;
  background-color: rgba(58, 134, 255, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.blog-card-content h2 {
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-content h2 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-card-content h2 a:hover {
  color: var(--primary-color);
}

.blog-date {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.blog-excerpt {
  color: var(--gray-color);
  margin-bottom: 20px;
}

/* Subscribe Section */
.subscribe {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.subscribe h2 {
  margin-bottom: 1rem;
}

.subscribe p {
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  margin-bottom: 1rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.subscribe-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Blog Post */
.blog-post {
  padding: 80px 0;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-post-meta {
  margin-bottom: 20px;
}

.blog-post-meta span {
  display: inline-block;
  margin: 0 10px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-post-meta .category {
  color: var(--primary-color);
  font-weight: 600;
}

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

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content h2 {
  margin-top: 40px;
}

.blog-post-content h3 {
  margin-top: 30px;
}

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

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

.blog-post-content img {
  border-radius: var(--border-radius);
  margin: 30px 0;
  box-shadow: var(--box-shadow);
}

.post-tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.post-tags span {
  display: inline-block;
  margin-right: 10px;
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 12px;
  background-color: #f8f9fa;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gray-color);
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.share-post {
  margin-top: 60px;
  text-align: center;
}

.share-post h3 {
  margin-bottom: 20px;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

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

.related-posts {
  margin-top: 80px;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 30px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

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

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

.related-post-card a {
  color: var(--dark-color);
}

.related-post-card a:hover {
  color: var(--primary-color);
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.info-card .icon {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--gray-color);
}

.contact-form-container {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-secondary);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input {
  width: auto;
  margin-top: 5px;
}

.checkbox-container label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

.map-section {
  padding-bottom: 80px;
}

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

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--danger-color);
}

.modal-body {
  padding: 40px;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-body h2 {
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 30px;
}

.close-btn {
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #212529;
  color: #f8f9fa;
  padding: 80px 0 40px;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #adb5bd;
  margin-bottom: 5px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #adb5bd;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #adb5bd;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons 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-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: #adb5bd;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: #adb5bd;
  font-size: 0.9rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-btn.accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-btn.accept:hover {
  background-color: var(--primary-dark);
}

.cookie-btn.customize {
  background-color: #f8f9fa;
  color: var(--dark-color);
}

.cookie-btn.customize:hover {
  background-color: #e9ecef;
}

.cookie-btn.reject {
  background-color: transparent;
  color: var(--gray-color);
  border: 1px solid var(--gray-color);
}

.cookie-btn.reject:hover {
  background-color: #f8f9fa;
}

.cookie-policy-link {
  font-size: 0.85rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.cookie-policy-link a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .interview-content {
    flex-direction: column;
  }
  
  .expert-image {
    margin-bottom: 30px;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-card .blog-image {
    height: 200px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  nav.active ul {
    flex-direction: column;
  }
  
  nav.active ul li {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 15px;
  }
  
  .subscribe-form .btn {
    border-radius: var(--border-radius);
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
