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

:root {
  --primary: #2561A5;
  --secondary: #2c3e50;
  --accent: #2561A5;
  --bg: #ffffff;
  --surface: #f8f9fa;
  --text: #2c3e50;
  --text-muted: #6c757d;
  --border: #dee2e6;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.home {
  background: rgba(255, 255, 255, 0.3);
}

.navbar.home .nav-menu a {
  color: white;
}

.navbar.home.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.navbar.home.scrolled .nav-menu a {
  color: var(--text);
}

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

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

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.cart-icon:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  text-align: center;
  color: white;
}

.hero-badge {
  margin-bottom: 30px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-description {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  padding: 12px 25px;
  font-size: 16px;
  background: white;
  color: var(--primary);
  font-weight: 600;
}

.hero-btn-secondary {
  padding: 12px 25px;
  font-size: 16px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid white;
  transition: all 0.3s;
}

.about-section {
  padding: 100px 0;
  background: white;
}

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

.about-title {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--secondary);
}

.about-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 40px;
}

.about-text-large {
  font-size: 1.4rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-text {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-btn {
  padding: 15px 35px;
  font-size: 18px;
}

.services-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.services-title {
  text-align: center;
  margin-bottom: 80px;
}

.services-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.services-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}

.service-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 5px solid var(--primary);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-description {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1.1rem;
}

.products-section {
  padding: 100px 0;
  background: white;
}

.products-title {
  text-align: center;
  margin-bottom: 80px;
}

.products-title h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.products-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 50%;
  opacity: 0.05;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(37,97,165,0.2);
}

.product-card:hover::before {
  opacity: 0.1;
  transform: scale(1.2);
}

.product-image-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-info {
  padding: 35px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.3;
}

.product-info p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
  height: 3.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  font-size: 2.2rem;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(37,97,165,0.1);
}

.product-btn {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border: none;
  border-radius: 15px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37,97,165,0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.product-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37,97,165,0.4);
}

.product-btn:hover::before {
  left: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 30px;
}

.hero-badge-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffffff !important;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 97, 165, 0.3);
}

/* Modern Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
}

.cards-grid .product-card,
.cards-grid .card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}

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

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.card .btn {
  margin-top: auto;
  text-align: center;
  align-self: stretch;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-info h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}

.product-info p {
  flex: 1;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-price {
  margin-bottom: 20px;
}

.product-info .btn {
  margin-top: auto;
  align-self: stretch;
}

.product-price {
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  margin: 12px 0 20px 0;
}

/* Footer */
.footer {
  background: #ffffff;
  color: var(--text);
  padding: 50px 0 20px;
  margin-top: 100px;
  border-top: 1px solid var(--border);
}

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

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--text);
}

.footer-section p {
  color: var(--text-muted);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  max-width: 400px;
  margin: 0 auto;
}

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

.cookie-buttons .btn {
  flex: 1;
  padding: 8px 16px;
  font-size: 14px;
}

/* Go to Top */
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(37, 97, 165, 0.3);
}

.go-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Filter Buttons */
.filter-btn {
  background: #6c757d !important;
  color: white;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 97, 165, 0.3);
}

.filter-btn:hover {
  background: var(--accent) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* About section mobile responsive - general grid fix */
  section div[style*="grid-template-columns: 1fr 1fr"]:not([style*="background: linear-gradient(135deg, #ffffff"]) {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  /* Hide about section left side on mobile for My Story section only */
  section[style*="background: linear-gradient(135deg, #f8f9fa"] div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
    display: none !important;
  }
  
  /* Learn more button mobile responsive */
  section a[style*="display: inline-flex"],
  section a[style*="display: inline-block"] {
    display: block !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }
  
  /* Mobile button grid for CTA section */
  .hero-section div[style*="display: flex"],
  section div[style*="display: flex; gap: 15px; justify-content: center"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  /* Mobile button styling */
  .hero-section .btn,
  .hero-section a {
    width: 100% !important;
    text-align: center !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
  /* Force all content to center on mobile */
  section,
  section div,
  section p,
  section h1,
  section h2,
  section h3,
  section h4 {
    text-align: center !important;
  }

  /* Center buttons and links */
  section .btn,
  section a {
    margin: 0 auto !important;
    display: block !important;
    width: fit-content !important;
  }

  /* Center flex containers */
  section div[style*="display: flex"] {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Grid layouts become single column and centered */
  section div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 20px 0;
    transition: left 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-right {
    gap: 15px;
  }

  .cart-icon {
    font-size: 1.1rem;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-badge-text {
    font-size: 8px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  /* Blog grid responsive */
  #blogContainer {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  /* Home blog mobile responsive */
  #homeBlogContainer {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center !important;
  }
  
  .footer-section h3,
  .footer-section a,
  .footer-section p {
    text-align: center !important;
  }
  
  .footer-section .logo {
    display: flex !important;
    justify-content: center !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Mid-level devices - 2 cards per row */
  #blogContainer {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 35px !important;
  }
  
  /* Home blog responsive */
  #homeBlogContainer {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .product-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .card {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .product-card .btn,
  .card .btn {
    width: 100%;
    text-align: center;
  }

  .product-info,
  .card-content {
    text-align: center;
  }

  .footer,
  .footer-content,
  .footer-section,
  .footer-section h3,
  .footer-section a,
  .footer-section p,
  .footer-bottom {
    text-align: center !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section .logo {
    justify-content: center;
  }

  /* About page mobile responsive */
  .about-grid,
  section div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
  }

  /* Blog details mobile responsive */
  .blog-meta,
  div[style*="display: flex"][style*="gap: 20px"] {
    justify-content: center !important;
    text-align: center;
  }
  
  /* Blog meta - change from row to column on mobile */
  div[style*="display: flex"][style*="justify-content: center"][style*="gap: 15px"],
  header div[style*="display: flex"],
  article header div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 5px !important;
    align-items: center !important;
  }

  section div[style*="grid-template-columns: 1fr 1fr"] div {
    text-align: center !important;
  }

  /* Override for input elements */
  input,
  textarea,
  select {
    text-align: left !important;
  }

  /* Hide step numbers on mobile */
  .step-number {
    display: none;
  }



    #faqContainer > div {
      text-align: center;
    }

    /* Blog post meta centering */
    .blog-post-meta {
      text-align: center !important;
      justify-content: center !important;
    }

    /* Why Choose Us section mobile layout */
    section[style*="linear-gradient(135deg, #667eea 0%, #764ba2 100%)"]
      div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
      grid-template-columns: 1fr !important;
      gap: 30px !important;
    }

    /* Testimonials grid mobile layout */
    .testimonials-grid {
      grid-template-columns: 1fr !important;
    }
    
    /* Force testimonial cards to full width on mobile */
    section[style*="background: #f8f9fa"] .testimonials-grid {
      grid-template-columns: 1fr !important;
    }
    
    section[style*="background: #f8f9fa"] .testimonials-grid > div {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
    }

    /* Blog details content centering */
    .blog-content,
    .blog-content p,
    .blog-content h1,
    .blog-content h2,
    .blog-content h3 {
      text-align: center !important;
    }
  }
}

/* My Commitment Section Styles */
.commitment-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  position: relative;
}

.commitment-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 97, 165, 0.05), transparent);
  border-radius: 50%;
}

.commitment-container {
  position: relative;
  z-index: 2;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.commitment-images {
  position: relative;
}

.commitment-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 400px;
}

.commitment-image-large {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 97, 165, 0.15);
}

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

.commitment-image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.commitment-image-small {
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 20px 40px rgba(37, 97, 165, 0.15);
}

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

.commitment-title {
  font-size: 4rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.commitment-text-primary {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #495057;
  font-weight: 300;
}

.commitment-text-secondary {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 40px;
}

.commitment-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(37, 97, 165, 0.2);
  transition: all 0.3s ease;
}

.commitment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 97, 165, 0.3);
}

/* About page specific mobile styles */
@media (max-width: 768px) {
  /* My Story section mobile */
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #f8f9fa"] {
    padding: 60px 0 !important;
  }
  
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #f8f9fa"] h2 {
    font-size: 2.5rem !important;
  }
  
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #f8f9fa"] p {
    font-size: 1.1rem !important;
  }
  
  /* My Commitment section mobile - hide images completely */
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] {
    padding: 60px 0 !important;
  }
  
  /* Hide the entire image grid container and left side images */
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] div[style*="position: relative"],
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 20px"],
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] div[style*="grid-template-columns: 1fr 1fr; gap: 100px"] > div:first-child,
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] div[style*="height: 400px"] {
    display: none !important;
  }
  
  /* Make the main grid single column */
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] div[style*="display: grid; grid-template-columns: 1fr 1fr; gap: 100px"] {
    display: block !important;
    text-align: center !important;
  }
  
  /* Style the text content */
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] h2 {
    font-size: 2.2rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] p {
    font-size: 1.1rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    line-height: 1.6 !important;
  }
  
  section[style*="padding: 120px 0"][style*="background: linear-gradient(135deg, #ffffff"] a {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto !important;
    padding: 12px 30px !important;
    font-size: 1rem !important;
    text-align: center !important;
  }
  
  /* My Commitment section mobile responsive */
  .commitment-section {
    padding: 60px 0 !important;
  }
  
  .commitment-decoration {
    width: 100% !important;
    height: 200px !important;
  }
  
  .commitment-images {
    display: none !important;
  }
  
  .commitment-grid {
    display: block !important;
  }
  
  .commitment-content {
    text-align: center !important;
  }
  
  .commitment-title {
    font-size: 2.2rem !important;
  }
  
  .commitment-text-primary,
  .commitment-text-secondary {
    font-size: 1.1rem !important;
  }
  
  .commitment-btn {
    display: block !important;
    width: fit-content !important;
    margin: 0 auto !important;
    padding: 12px 30px !important;
    font-size: 1rem !important;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  transition: border-color 0.3s;
}

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

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

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal.show {
  display: flex;
}

.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-muted);
}

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

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 1002;
  transform: translateX(400px);
  transition: transform 0.3s;
  box-shadow: 0 10px 30px rgba(37, 97, 165, 0.3);
}

.notification.show {
  transform: translateX(0);
}
