:root {
  /* Brand Color Variables */
  --deep-navy: #023E7D;
  --sky-blue: #0496DD;
  --slate-blue: #1D3E64;
  --icy-blue: #CDECFF;
  --soft-aqua: #A5E2FF;
  --baby-blue: #95DAFF;
  --white: #FFFFFF;
  --dark-gray: #333333;

  /* Gradient Variables */
  --primary-gradient: linear-gradient(135deg, var(--deep-navy), var(--sky-blue));
  --secondary-gradient: linear-gradient(135deg, #E8F4FF, #F0F9FF);
  --tertiary-gradient: linear-gradient(135deg, var(--sky-blue), var(--baby-blue));
  --quaternary-gradient: linear-gradient(135deg, var(--slate-blue), var(--soft-aqua));

  /* Primary Colors for Quick Reference */
  --primary-color: var(--deep-navy);
  --secondary-color: var(--sky-blue);
  --tertiary-color: var(--slate-blue);
  --accent-color: var(--baby-blue);
  --background-color: var(--icy-blue);
  --text-color: var(--dark-gray);

  /* Status Colors (minimal usage) */
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  overflow-x: hidden !important;
}

/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

body {
  padding-top: 80px;
}

.dreamcore-logo{
  height: 50px;
  object-fit: cover;
}

.navbar-brand .highlight {
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  color: var(--tertiary-color) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

.btn-demo {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  margin-right: 0.5rem;
}

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

.btn-free {
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 500;
}

.btn-free a{
  color: var(--primary-color) !important;
}

html .btn-free:hover a{
  color: var(--white) !important;
}

html .btn-free:hover {
  background-color: var(--primary-color);
  color: var(--white) !important;
}

/* Hero Section */
.hero-section {
  background: var(--secondary-gradient);
  padding: 2rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.platform-tag {
  background-color: var(--accent-color);
  color: var(--tertiary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-buttons {
  margin-bottom: 1rem;
}

.hero-buttons .btn {
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.hero-note {
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
  position: relative;
  max-width: 100%;
  height: auto;
}

.orange-circle-bg {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: var(--soft-aqua);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.9;
}

.dashboard-container {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  margin-left: 2rem;
}

.dashboard-image {
  position: relative;
  z-index: 3;
  max-width: 650px;
  object-fit: contain;
  left: 50px;
  top: -40px;
  height: auto;
  border-radius: 12px;
  display: block !important;
  margin: 0 auto;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0px); }
  50% { transform: rotate(45deg) translateY(-10px); }
}

.floating-cards {
  position: absolute;
  top: 20%;
  right: -15%;
  z-index: 5;
}

.floating-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-color);
  min-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card.purple {
  border-left-color: var(--secondary-color);
  animation-delay: 0.5s;
}

.floating-card.orange {
  border-left-color: var(--primary-color);
  animation-delay: 1s;
}

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

#imageInput {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .btn-demo {
    margin-bottom: 1rem;
    width: 100%;
  }

  .hero-buttons .btn{
    width: 100%;
  }

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

  .dashboard-container {
    transform: none;
    margin-left: 0;
    margin-top: 2rem;
  }

  .floating-cards {
    position: static;
    margin-top: 1rem;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 50vh !important;
  }

  .dashboard-image{
    max-width: 500px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1281px) {
  .dashboard-image{
    left: 0 !important;
  }
}

/* About Section */
.about-section {
  background-color: var(--white);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.about-container {
  background: var(--secondary-gradient);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.about-image-column {
  flex: 0 0 400px;
  position: relative;
}

.about-text-column {
  flex: 1;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-upload {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--soft-aqua);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--secondary-gradient);
}

.about-image-upload:hover {
  border-color: var(--secondary-color);
  background: var(--tertiary-gradient);
}

.about-image-upload.dragover {
  border-color: var(--secondary-color);
  background: var(--tertiary-gradient);
}

.about-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-upload-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.about-upload-text {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-upload-subtext {
  color: var(--tertiary-color);
  font-size: 0.85rem;
  text-align: center;
}

.about-decorative-elements {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
}

.about-diamond {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  transform: rotate(45deg);
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.about-diamond.blue {
  background: var(--secondary-color);
  animation-delay: 0.5s;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-sub-description {
  font-size: 1rem;
  color: var(--tertiary-color);
  line-height: 1.6;
}

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

.about-btn {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.about-btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 62, 125, 0.3);
  color: var(--white);
  text-decoration: none;
}

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

.about-btn-secondary a{
  color: var(--primary-color) !important;
}

html .about-btn-secondary:hover a{
  color: var(--white) !important;
}

.about-btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}

/* Animation */
@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0px); }
  50% { transform: rotate(45deg) translateY(-8px); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image-column {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text-column {
    text-align: center;
  }
}

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

  .about-title {
    font-size: 1.8rem;
  }

  .about-image-container {
    height: 250px;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-btn {
    width: 100%;
  }
}

/* Customer Logos Section */
.customer-logos-section {
  background-color: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--background-color);
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.logos-carousel {
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 80px;
}

.logo-item img {
  max-height: 60px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
  display: inherit !important;
}

.owl-carousel .owl-nav button {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--soft-aqua);
  color: var(--text-color);
  font-size: 1.2rem;
  pointer-events: all;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--white) !important;
  color: var(--secondary-color) !important;
}

.owl-carousel .owl-nav .owl-prev {
  left: -30px;
}

.owl-carousel .owl-nav .owl-next {
  right: -30px;
}

.owl-carousel .owl-dots {
  display: none;
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
  .owl-carousel .owl-nav {
    display: none;
  }

  .section-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .logo-item {
    height: 60px;
  }

  .logo-item img {
    max-height: 40px;
    max-width: 120px;
  }
}

/* Front Office Section */
.front-office-section {
  background: var(--secondary-gradient);
  padding: 4rem 0;
  position: relative;
}

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

.front-office-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 3rem;
  border-radius: 12px;
}

.front-office-header .feature-video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #000;
}

.front-office-header .feature-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.front-office-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.front-office-description {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.front-office-buttons {
  margin-top: 2rem;
}

.front-office-buttons .btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  margin: 0 0.5rem 1rem;
  border-radius: 6px;
}

/* Hub Cards Section */
.hub-cards {
  margin-top: 4rem;
}

.hub-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.hub-card.marketing {
  border-top-color: var(--primary-color);
}

.hub-card.sales {
  border-top-color: var(--secondary-color);
}

.hub-card.service {
  border-top-color: var(--tertiary-color);
}

.hub-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.2rem;
}

.hub-icon.marketing {
  background-color: var(--primary-color);
}

.hub-icon.sales {
  background-color: var(--secondary-color);
}

.hub-icon.service {
  background-color: var(--tertiary-color);
}

.hub-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hub-description {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.popular-features h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.feature-list li {
  color: var(--text-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.hub-cta {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hub-cta.marketing {
  background-color: var(--primary-color);
}

.hub-cta.marketing:hover {
  background-color: var(--tertiary-color);
}

.hub-cta.sales {
  background-color: var(--secondary-color);
}

.hub-cta.sales:hover {
  background-color: var(--tertiary-color);
}

.hub-cta.service {
  background-color: var(--tertiary-color);
}

.hub-cta.service:hover {
  background-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .front-office-title {
    font-size: 2rem;
  }

  .front-office-description {
    font-size: 1rem;
  }

  .front-office-header .feature-video {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .front-office-header .play-button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hub-card {
    margin-bottom: 2rem;
  }

  .front-office-buttons .btn {
    display: block;
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: var(--secondary-gradient);
  padding: 5rem 0;
  position: relative;
}

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

.results-badge {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.results-badge::before {
  content: "✓";
  margin-right: 0.5rem;
  font-weight: bold;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.testimonials-description {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Cards */
.stats-section {
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

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

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-card:nth-child(2) {
  border-left-color: var(--secondary-color);
}

.testimonial-card:nth-child(3) {
  border-left-color: var(--tertiary-color);
}

.saved-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.customer-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.customer-avatar.orange {
  background: var(--primary-gradient);
}

.customer-avatar.green {
  background: var(--tertiary-gradient);
}

.customer-avatar.purple {
  background: var(--quaternary-gradient);
}

.customer-info h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.customer-info p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.9rem;
}

.star-rating {
  color: #facc15;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.revenue-info {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.revenue-info::before {
  content: "↗";
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-title,
  .testimonials-subtitle {
    font-size: 2rem;
  }

  .testimonials-description {
    font-size: 1rem;
  }

  .stat-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Tool Comparison Section */
.tool-comparison-section {
  background-color: var(--white);
  padding: 5rem 0;
  position: relative;
}

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

.comparison-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.comparison-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Zig-Zag Layout */
.feature-section {
  margin-bottom: 2rem;
  position: relative;
}

.feature-content {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.feature-video {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--secondary-gradient);
}

.feature-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-video video {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 12px;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-video:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  pointer-events: all;
  cursor: pointer;
}

.play-button:hover {
  background: var(--white);
  transform: scale(1.1);
}

.video-upload-area {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--soft-aqua);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--background-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-upload-area:hover {
  border-color: var(--secondary-color);
  background: var(--soft-aqua);
}

.video-upload-area.dragover {
  border-color: var(--secondary-color);
  background: var(--soft-aqua);
}

.upload-icon {
  font-size: 2.5rem;
  color: var(--soft-aqua);
  margin-bottom: 1rem;
}

.upload-text {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.upload-subtext {
  color: var(--tertiary-color);
  font-size: 0.85rem;
  text-align: center;
}

.feature-text {
  padding: 0 2rem;
}

.feature-badge {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-stats {
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #ff5722;
  text-align: left;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
  text-align: left;
}

.stat-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
  text-align: left;
}

.stat-content .time-saved {
  color: #10b981;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.stat-content .financial-impact {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.feature-cta {
  padding: 0.8rem 2rem;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 62, 125, 0.3);
  color: var(--white);
  text-decoration: none;
}

/* Section-specific colors */
.feature-section.performance .feature-badge {
  background: var(--primary-gradient);
}

.feature-section.performance .stat-item {
  border-left-color: var(--primary-color);
}

.feature-section.performance .stat-icon {
  background: var(--primary-gradient);
}

.feature-section.security .feature-badge {
  background: var(--tertiary-gradient);
}

.feature-section.security .stat-item {
  border-left-color: var(--secondary-color);
}

.feature-section.security .stat-icon {
  background: var(--tertiary-gradient);
}

.feature-section.seo .feature-badge {
  background: var(--quaternary-gradient);
}

.feature-section.seo .stat-item {
  border-left-color: var(--tertiary-color);
}

.feature-section.seo .stat-icon {
  background: var(--quaternary-gradient);
}

/* Final CTA Section */
.comparison-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: var(--secondary-gradient);
  border-radius: 12px;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  margin: 0 0.5rem 1rem;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .comparison-title {
    font-size: 2rem;
  }

  .feature-section{
    margin-bottom: 3rem;
  }

  .feature-content {
    flex-direction: column;
    min-height: auto;
  }

  .feature-text {
    padding: 2rem 0 0 0;
    order: 1;
  }

  .feature-video {
    height: 250px;
    order: 2;
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

/* Pricing Section */
/* Pricing Section */
.pricing-section {
  background-color: var(--white);
  padding: 5rem 0;
  position: relative;
}

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

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.pricing-container {
  background: var(--secondary-gradient);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 4rem;
  border: 2px solid var(--primary-color);
  position: relative;
}

.pricing-container::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-content {
  align-items: flex-start;
  gap: 3rem;
}

.features-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-color);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(2, 62, 125, 0.1);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

/* Trust Badges in Pricing Column */
.trust-badges-inline {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  text-align: center;
}

.trust-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.payment-badges-inline {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.payment-badge-small {
  height: 25px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.payment-badge-small:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.security-badges-inline {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.security-badge-small {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.security-badge-small:hover {
  transform: scale(1.05);
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.toggle-container {
  background: var(--background-color);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--tertiary-color);
}

.toggle-btn.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(2, 62, 125, 0.2);
}

.price-display {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  position: relative;
  border: 2px solid var(--accent-color);
}

.savings-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(5deg);
  box-shadow: 0 4px 15px rgba(4, 150, 221, 0.3);
}

.plan-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}

.price-amount::before {
  content: "$";
  font-size: 2rem;
  vertical-align: top;
  margin-right: 5px;
}

.price-period {
  font-size: 1.1rem;
  color: var(--tertiary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.price-description {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.4;
}

.pricing-cta {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.pricing-cta a {
  color: var(--white) !important;
  text-decoration: none;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 62, 125, 0.3);
}

.pricing-guarantees {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  text-align: center;
}

.pricing-guarantees strong {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

/* Final CTA Section */
.final-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--secondary-gradient);
  border-radius: 12px;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.final-cta-description {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-demo, .btn-free {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
}

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

.btn-demo:hover {
  background-color: var(--tertiary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-free a {
  color: var(--primary-color) !important;
  text-decoration: none;
}

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

.btn-free:hover a {
  color: var(--white) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pricing-content {
    gap: 2rem;
  }

  .pricing-column {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

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

  .pricing-container {
    padding: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .final-cta-title {
    font-size: 1.6rem;
  }

  .final-cta-description {
    font-size: 1rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-demo, .btn-free {
    width: 250px;
  }

  .toggle-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .security-badges-inline {
    gap: 0.5rem;
  }

  .security-badge-small {
    height: 25px;
  }

  .payment-badge-small {
    height: 20px;
  }
}

@media (max-width: 576px) {
  .features-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  .pricing-container {
    padding: 1.5rem;
  }

  .final-cta {
    padding: 2rem 1rem;
  }
}

/* Footer Section */
.footer-section {
  background-color: var(--background-color);
  padding: 3rem 0 2rem;
  color: var(--primary-color);
  position: relative;
}

.footer-content {
  text-align: center;
}

.footer-social {
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(2, 62, 125, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(2, 62, 125, 0.4);
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo a {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}

.footer-logo .highlight {
  color: var(--primary-color);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(2, 62, 125, 0.2) 50%, transparent 100%);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.footer-powered .heart {
  color: var(--primary-color);
  animation: heartbeat 2s infinite;
}

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

.footer-powered a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-logo a {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .footer-powered,
  .footer-copyright {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.modal-header {
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 12px 12px 0 0;
  padding: 1rem 2rem;
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--icy-blue);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(4, 150, 221, 0.25);
}

.btn-submit {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 62, 125, 0.3);
}

.modal-footer-text {
  text-align: center;
  color: var(--text-color);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  background: var(--secondary-gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(4, 150, 221, 0.05) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(4, 150, 221, 0.2);
  backdrop-filter: blur(10px);
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Custom Accordion Styling */
.accordion {
  --bs-accordion-border-radius: 16px;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-padding-x: 2rem;
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-body-padding-x: 2rem;
  --bs-accordion-body-padding-y: 1.5rem;
}

.accordion-item {
  background: var(--white);
  border: 2px solid rgba(4, 150, 221, 0.1);
  border-radius: 16px !important;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(2, 62, 125, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.accordion-item:hover {
  border-color: rgba(4, 150, 221, 0.2);
  box-shadow: 0 8px 30px rgba(2, 62, 125, 0.15);
  transform: translateY(-3px);
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  text-align: left;
  box-shadow: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.accordion-button:not(.collapsed) {
  background: var(--secondary-gradient);
  color: var(--primary-color);
  box-shadow: none;
  border-radius: 16px 16px 0 0;
}

.accordion-button:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(4, 150, 221, 0.25);
}

.accordion-button:hover {
  background: var(--secondary-gradient);
  color: var(--primary-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23023E7D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230496DD'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-collapse {
  border-radius: 0 0 16px 16px;
}

.accordion-body {
  background-color: var(--white);
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  border-top: 1px solid rgba(4, 150, 221, 0.1);
  position: relative;
}

.accordion-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--background-color), transparent);
}

.accordion-body p {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body ul {
  margin: 1.2rem 0;
  padding-left: 1.5rem;
}

.accordion-body ul li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  position: relative;
}

.accordion-body ul li::marker {
  display: none !important;
  color: transparent;
}

.accordion-body ul ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

.accordion-body ul ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.accordion-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

.accordion-body a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-body a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Enhanced styling for different content types */
.pricing-highlight {
  background: var(--secondary-gradient);
  padding: 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  margin: 1rem 0;
}

.feature-list {
  background: rgba(205, 236, 255, 0.3);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .faq-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1.1rem;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .accordion-body {
    padding: 1.25rem 1.5rem;
  }

}

@media (max-width: 576px) {
  .faq-container {
    padding: 0 1rem;
  }

  .accordion-item {
    margin-bottom: 1rem;
  }

  .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }
}
