/* Modern CH Tutor Website Design System */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap");


/* CSS Variables - Design Tokens */
:root {
  /* Primary Colors */
  --primary-blue: #1369EC;
  --primary-blue-dark: #0d4fa8;
  --primary-blue-light: #4a8ff4;
  --primary-blue-lighter: #c7dffa;
  
  /* Neutral Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gray: #f8f9fa;
  
  /* Accent Colors */
  --accent-purple: #9341d4;
  --accent-orange: #ffb16b;
  --accent-teal: #19a5a1;
  --accent-pink: #f2026b;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(19,105,236,0.15);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  --spacing-2xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 10rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Font Families */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { 
  font-size: clamp(3.6rem, 5vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 { 
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 { 
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 600;
}

.paragraph {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.paragraph-sm {
  font-size: 1.6rem;
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Modern Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.header__logo img {
  height: 4rem;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header__nav-primary {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.header__nav-primary li a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav-primary li a:hover {
  color: var(--primary-blue);
}

.header__nav-primary li a::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width var(--transition-base);
}

.header__nav-primary li a:hover::after {
  width: 100%;
}

.download-nav-item .btn {
  background: var(--primary-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.download-nav-item .btn:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Menu */
.header__bars {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
}

.header__bars-bar {
  width: 2.5rem;
  height: 0.3rem;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 40rem;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right var(--transition-slow);
    padding: 8rem 3rem;
  }
  
  .header__nav.active {
    right: 0;
  }
  
  .header__nav-primary {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .header__bars {
    display: flex;
  }
}

/* Modern Hero Section */
.hero {
  padding-top: 12rem;
  padding-bottom: 8rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(19,105,236,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__wrapper {
  position: relative;
  z-index: 2;
}

.main-heading {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  background: rgba(19,105,236,0.1);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  font-size: 1.4rem;
  font-weight: 600;
}

.download-buttons {
  margin-top: 3rem;
}

.apple-store {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: var(--text-primary);
  color: white;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-decoration: none;
}

.apple-store:hover {
  background: black;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.apple-store i {
  font-size: 2.5rem;
}

.button-content h6 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

.button-content h6 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-img img {
  width: 100%;
  max-width: 50rem;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Modern Feature Section */
.feature {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-white);
  position: relative;
  z-index: 5;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-subheading {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-light);
  max-width: 60rem;
  margin: 0 auto 4rem;
}

.feature__box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  height: 100%;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.feature__box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-lighter);
  z-index: 10;
}

.feature__box .icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

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

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

/* Fix for numbered feature boxes */
.feature__box--1, .feature__box--2, .feature__box--3, .feature__box--4 {
  position: relative;
  z-index: inherit;
}

.feature__box__wrapper {
  position: relative;
  z-index: 1;
}

/* Modern Growth/Features Grid */
.growth {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-gray);
}

.growth__box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all var(--transition-base);
  margin-bottom: 2rem;
}

.growth__box:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.growth__box .icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19,105,236,0.1);
  border-radius: var(--radius-md);
}

.growth__box .icon i {
  font-size: 2rem;
  color: var(--primary-blue);
}

.growth__box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

/* Modern Screenshots Section */
.screenshot {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-white);
  overflow: hidden;
}

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

.screenshot-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.screenshot-nav-prev,
.screenshot-nav-next {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.screenshot-nav-prev:hover,
.screenshot-nav-next:hover {
  background: var(--primary-blue-dark);
  transform: scale(1.1);
}

.screenshot-slide img {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Modern Testimonials */
.testimonials {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-gray);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.testimonial-card:hover {
  border-color: var(--primary-blue-lighter);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: #ffc107;
  font-size: 1.8rem;
}

.testimonial-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.testimonial-body {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.testimonial-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--bg-light);
}

.testimonial-author strong {
  display: block;
  font-size: 1.6rem;
  color: var(--text-primary);
}

/* Modern Methodology Section */
.methodology {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-white);
}

.methodology-content {
  padding: 2rem 0;
}

.methodology-content h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  font-size: 1.6rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list i {
  color: #28a745;
  margin-top: 0.3rem;
}

.methodology img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Modern Newsletter Section */
.newsletter {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.newsletter__wrapper {
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  color: white !important;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.newsletter-benefits li {
  padding: 0.8rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.6rem;
}

.newsletter-benefits i {
  margin-right: 1rem;
  color: rgba(255,255,255,0.8);
}

.newsletter-form-wrapper {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form .form-control {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-size: 1.6rem;
  transition: all var(--transition-base);
}

.newsletter-form .form-control:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  outline: none;
}

.newsletter-form .btn-light {
  background: white;
  color: var(--primary-blue);
  padding: 1.5rem 3rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  transition: all var(--transition-base);
  font-size: 1.6rem;
  width: 100%;
}

.newsletter-form .btn-light:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Modern FAQ Section */
.questions {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-gray);
}

#accordion .card {
  background: white;
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all var(--transition-base);
}

#accordion .card:hover {
  box-shadow: var(--shadow-md);
}

#accordion .card-header {
  background: white;
  border: none;
  padding: 0;
}

#accordion .btn-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 2rem 2.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: all var(--transition-base);
}

#accordion .btn-link:hover {
  color: var(--primary-blue);
}

#accordion .btn-link::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-base);
}

#accordion .btn-link[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

#accordion .card-body {
  padding: 0 2.5rem 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Modern Footer */
.footer {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: var(--text-primary);
  color: white;
}

.footer__info--logo img {
  height: 5rem;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.footer__info--content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  line-height: 1.8;
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  margin-right: 1rem;
  transition: all var(--transition-base);
}

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

.footer__list ul {
  list-style: none;
  padding: 0;
}

.footer__list ul li:first-child {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer__list ul li {
  margin-bottom: 1rem;
}

.footer__list ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  transition: color var(--transition-base);
}

.footer__list ul li a:hover {
  color: white;
}

.footer__copy {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__copy h6 {
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  font-weight: 400;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pt-4 { padding-top: 4rem; }
.pt-5 { padding-top: 5rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }
.pb-4 { padding-bottom: 4rem; }
.pb-5 { padding-bottom: 5rem; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
  html { font-size: 58%; }
}

@media (max-width: 991px) {
  html { font-size: 56%; }
  
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
  
  .section-heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  html { font-size: 54%; }
  
  .hero-img {
    margin-top: 4rem;
  }
  
  .feature__box,
  .growth__box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  html { font-size: 52%; }
  
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 2rem; }
  
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader img {
  width: 8rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

body.loaded .preloader {
  opacity: 0;
  pointer-events: none;
}

/* Smooth Scroll */
html {
  scroll-padding-top: 8rem;
}

/* Accordion/FAQ Icons */
.accordion-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-top: 0.125rem;
}

.btn-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  text-decoration: none;
}

.btn-link:hover {
  color: var(--primary-blue);
  text-decoration: none;
}

.btn-link:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1.25rem 0;
}

.card {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  margin-bottom: 0;
}

.card:last-child {
  border-bottom: none;
}

.card-body {
  padding: 1.25rem 0;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline-offset: 4px;
}

/* Subpage Styles (Support, Imprint, etc.) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__wrapper {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  text-align: center;
}

.page-hero__title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: 2rem;
  }
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255,255,255,0.5);
  padding: 0 0.75rem;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: white;
  font-weight: 500;
}

/* Page Content */
.page-content {
  padding: 80px 0;
  background: var(--bg-light);
}

.content-card {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .content-card {
    padding: 40px 20px;
  }
}

.info-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-heading {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.info-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-content p {
  margin-bottom: 10px;
}

.info-content address {
  font-style: normal;
  line-height: 1.8;
}

/* Support Page Specific */
.support-intro {
  padding: 80px 0;
  background: white;
}

.support-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.support-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card__icon i {
  font-size: 2rem;
  color: white;
}

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

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

.btn-text {
  color: var(--primary-blue);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-blue-dark);
  text-decoration: none;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-form-card {
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 40px 20px;
  }
}

.modern-form .form-group {
  margin-bottom: 25px;
}

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

.modern-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modern-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(19, 105, 236, 0.1);
  outline: none;
}

.modern-form .form-control.is-invalid {
  border-color: #dc3545;
}

.modern-form .invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
}

.modern-form select.form-control {
  appearance: none;
  background-color: white;
  color: #333;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 45px;
  cursor: pointer;
}

.modern-form select.form-control option {
  color: #333;
  background: white;
}

.modern-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .newsletter,
  .download-buttons,
  .page-hero {
    display: none;
  }
}