/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e67e22;
  --dark-blue: #1a2a3a;
  --light-blue: #d6eaf8;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --black: #000000;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --heading-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --border-radius: 6px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

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

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

body {
  font-family: var(--body-font);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 2rem;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
}

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

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

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

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

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

.btn-tertiary {
  background-color: var(--gray-300);
  color: var(--gray-700);
}

.btn-tertiary:hover {
  background-color: var(--gray-400);
  color: var(--gray-800);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.logo {
  max-width: 150px;
}

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

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

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

nav ul li a {
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

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

nav ul li a.active {
  position: relative;
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  background-color: var(--gray-100);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 2rem;
  font-size: 4.8rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.8rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* Features Grid */
.what-you-learn {
  padding: 8rem 0;
  background-color: var(--white);
}

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

.feature-card {
  background-color: var(--gray-100);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 2rem;
  background-color: var(--light-blue);
  border-radius: 50%;
  color: var(--secondary-color);
}

.feature-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.feature-card h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.feature-card p {
  font-size: 1.5rem;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

.post-content {
  padding: 2rem;
}

.post-content h3 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.post-content h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.post-content h3 a:hover {
  color: var(--secondary-color);
}

.post-content p {
  font-size: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.read-more {
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Countdown Section */
.countdown-section {
  padding: 6rem 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.countdown-section h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

#countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1.5rem;
  min-width: 10rem;
}

.countdown-item span {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.countdown-item p {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-bottom: 0;
}

/* Testimonial Section */
.testimonials {
  padding: 8rem 0;
  background-color: var(--white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  height: 250px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  flex: 0 0 100%;
  padding: 3rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  margin-right: 1.5rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.testimonial-author p {
  font-size: 1.4rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--gray-300);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 3.6rem;
}

.cta-section p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-300);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--gray-300);
  padding: 6rem 0 3rem;
}

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

.footer-about .footer-logo {
  max-width: 150px;
  margin-bottom: 2rem;
}

.footer-about p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.footer-links a {
  color: var(--gray-300);
  transition: var(--transition);
  font-size: 1.5rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-contact svg {
  margin-right: 1rem;
  flex-shrink: 0;
}

.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(--white);
  transition: var(--transition);
}

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

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

.footer-bottom p {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 1.4rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--gray-800);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}

.cookie-content p {
  margin-bottom: 2rem;
}

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

.cookie-learn-more {
  font-size: 1.4rem;
  text-decoration: underline;
  color: var(--gray-300);
}

.cookie-learn-more:hover {
  color: var(--white);
}

/* Blog Page Styles */
.blog-hero {
  padding: 10rem 0 6rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.blog-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.blog-hero p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-300);
}

.blog-featured {
  padding: 6rem 0;
  background-color: var(--white);
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-image {
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 400px;
}

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

.featured-content {
  display: flex;
  flex-direction: column;
}

.post-category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--light-blue);
  color: var(--secondary-color);
  border-radius: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.post-meta {
  font-size: 1.4rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.post-excerpt {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

.blog-grid {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

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

.newsletter-section {
  padding: 8rem 0;
  background-color: var(--light-blue);
  text-align: center;
}

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

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

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

.newsletter-form button {
  padding: 0 3rem;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-disclaimer {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Contact Page Styles */
.contact-hero {
  padding: 10rem 0 6rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

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

.contact-hero p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-300);
}

.contact-grid {
  padding: 6rem 0;
  background-color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}

.contact-info {
  padding: 3rem;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
}

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

.contact-info p {
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  margin-bottom: 3rem;
}

.info-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.info-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.info-item p {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.business-hours,
.social-links {
  margin-top: 4rem;
}

.business-hours h3,
.social-links h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-form-container {
  padding: 3rem;
}

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

.contact-form-container > p {
  margin-bottom: 3rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

.map-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

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

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

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.modal-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
  width: 90%;
  max-width: 500px;
  animation: modalopen 0.5s;
}

@keyframes modalopen {
  from {
    opacity: 0;
    transform: translateY(-150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  cursor: pointer;
}

.modal-body {
  text-align: center;
}

.success-icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  color: var(--white);
}

.success-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  stroke-width: 3;
}

.modal-body h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.modal-body p {
  margin-bottom: 2.5rem;
}

/* About Page Styles */
.about-hero {
  padding: 10rem 0 6rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

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

.about-hero p {
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-300);
}

.about-mission {
  padding: 8rem 0;
  background-color: var(--white);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-text h2 {
  margin-bottom: 3rem;
}

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

.about-story {
  padding: 8rem 0;
  background-color: var(--gray-100);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.about-values {
  padding: 8rem 0;
  background-color: var(--white);
}

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

.value-card {
  padding: 3rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  color: var(--secondary-color);
}

.value-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.team-section {
  padding: 8rem 0;
  background-color: var(--gray-100);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

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

.team-member p {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem 2rem;
}

.member-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

/* Blog Post Styles */
.blog-post {
  padding: 6rem 0;
}

.post-header {
  margin-bottom: 3rem;
  text-align: center;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: var(--gray-600);
}

.post-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.author-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-title {
  color: var(--gray-600);
  font-size: 1.4rem;
}

.post-featured-image {
  margin-bottom: 4rem;
}

.post-featured-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

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

.post-content p {
  font-size: 1.7rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.post-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

.post-content ul,
.post-content ol {
  margin-bottom: 3rem;
}

.post-content li {
  margin-bottom: 1rem;
}

.post-image {
  margin: 3rem 0;
}

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

.image-caption {
  text-align: center;
  font-size: 1.4rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

.post-cta {
  margin: 5rem 0;
  padding: 3rem;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
  text-align: center;
}

.post-cta h3 {
  margin-bottom: 1.5rem;
}

.post-cta p {
  margin-bottom: 2rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}

.tag-label {
  font-weight: 600;
  color: var(--gray-700);
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--gray-200);
  color: var(--gray-700);
  border-radius: 20px;
  font-size: 1.3rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

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

.share-label {
  font-weight: 600;
  color: var(--gray-700);
}

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

.social-share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--gray-200);
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--transition);
}

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

.related-posts {
  margin: 6rem 0;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

.related-post h4 {
  margin: 1.5rem;
  font-size: 1.8rem;
}

.related-post h4 a {
  color: var(--primary-color);
  text-decoration: none;
}

.related-post h4 a:hover {
  color: var(--secondary-color);
}

.related-post p {
  margin: 0 1.5rem 1.5rem;
  font-size: 1.5rem;
  color: var(--gray-600);
}

.post-comments {
  margin: 6rem auto;
  max-width: 800px;
}

.comments-list {
  margin-bottom: 4rem;
}

.comment {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-300);
}

.comment-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

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

.comment-header h4 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.comment-header span {
  font-size: 1.4rem;
  color: var(--gray-600);
}

.comment-content p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.reply-button {
  background-color: transparent;
  border: none;
  color: var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  font-size: 1.5rem;
}

.reply-button:hover {
  color: var(--primary-color);
}

.comment-form {
  padding: 3rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.comment-form h3 {
  margin-bottom: 3rem;
}

.comment-form .form-group {
  margin-bottom: 2rem;
}

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

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

.success-message {
  color: var(--success-color);
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .mission-content,
  .story-content,
  .featured-post {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-image,
  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 2rem 0;
  }
  
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .features-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  #countdown {
    flex-wrap: wrap;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .comment {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: var(--border-radius);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
  
  .hero-buttons,
  .post-meta,
  .post-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .social-share {
    margin-top: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
