/* Base Styles */

/* Problem Section Styles */
.problem-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.problem-content {
  flex: 1;
}

.problem-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.4;
}

.problem-content h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.problem-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.problem-content ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  list-style-type: none;
}

.problem-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.problem-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.highlight-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 25px;
  padding: 15px 0;
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  text-align: center;
}

@media (max-width: 992px) {
  .problem-flex-container {
    flex-direction: column;
  }

  .problem-content,
  .problem-image {
    width: 100%;
  }
}

:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4cc9f0;
  --text-color: #333333;
  --light-text: #ffffff;
  --dark-text: #222222;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

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

section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

ul {
  list-style: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-content .section-header {
  text-align: left;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-content .section-header h2 {
  margin-left: 0;
  margin-right: auto;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: 50px;
}

.btn-extra-padding {
  padding-right: 100px;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  cursor: pointer;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  padding-left: 35px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 700px;
  display: flex;
  align-items: center;
}

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

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 550px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: var(--dark-text);
  line-height: 1.2;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.hero-content .subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-actual-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  max-height: 550px; /* Increased to better fill the taller hero section */
}

.dummy-image {
  width: 400px;
  height: 300px;
  background-color: #f0f0f0;
  background-image: linear-gradient(
    135deg,
    rgba(67, 97, 238, 0.1) 0%,
    rgba(76, 201, 240, 0.1) 100%
  );
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.dummy-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%234361ee" opacity="0.1" d="M96,95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-10,0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9zm10,0h9v-9h-9v9z"/></svg>');
  opacity: 0.5;
}

.image-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  z-index: 2;
}

.image-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 25px;
  z-index: 2;
}

.image-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.feature-item {
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.trusted-by {
  margin-top: 50px;
}

.trusted-by p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.logo-container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}

.partner-logo {
  background-color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: #555;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-logo::before {
  content: "✓";
  margin-right: 8px;
  color: var(--primary-color);
  font-weight: bold;
}

/* Problem Statement Section */
.problem-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.problem-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
}

.problem-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.problem-card p {
  color: #666;
  line-height: 1.6;
}

.problem-image-container {
  text-align: center;
  margin-top: 30px;
}

.problem-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
  background-color: #f9f9f9;
  padding: 100px 0;
}

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

.benefits-content {
  flex: 1;
}

.benefits-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  margin-top: 0;
}

.benefits-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.benefits-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.benefits-list {
  margin: 20px 0 25px 20px;
}

.benefits-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #444;
  list-style-type: none;
}

.benefits-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .benefits-flex-container {
    flex-direction: column;
  }

  .benefits-content,
  .benefits-image {
    width: 100%;
  }
}

/* How It Works Section */
.how-it-works {
  background-color: var(--light-bg);
  text-align: center;
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Center the 7th box */
.process-grid > div:nth-child(7) {
  grid-column: 2;
}

.process-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-image {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.process-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.process-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.process-box p {
  color: #666;
  line-height: 1.5;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonials Section */
.testimonials {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.testimonials-container {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.testimonial-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-category {
  margin-bottom: 10px;
}

.testimonial-category h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-category h3 i {
  color: var(--primary-color);
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.quote-icon {
  font-size: 24px;
  color: var(--primary-color);
  opacity: 0.5;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  align-self: flex-start;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
    gap: 30px;
  }
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.how-it-works-image {
  margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  overflow: hidden;
  background-color: #4361ee;
  color: white;
  padding: 80px 0;
}

.testimonials .section-header h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-image {
  flex: 0 0 200px;
  margin-right: 30px;
}

.testimonial-image img {
  border-radius: 10px;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.quote-icon {
  margin-bottom: 15px;
}

.quote-icon i {
  font-size: 28px;
  color: #4361ee;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
  color: #444;
  flex-grow: 1;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: auto;
  text-align: left;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: #333;
  font-weight: 600;
}

.testimonial-author p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 14px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Pricing Section */
.pricing {
  background-color: var(--light-bg);
}

.pricing-image {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  position: relative;
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.period {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.pricing-features i {
  color: var(--success-color);
  margin-right: 10px;
}

.pricing-cta {
  text-align: center;
}

/* Case Studies Section */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case-study-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.case-study-content {
  padding: 25px;
}

.case-study-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  font-weight: 500;
  color: var(--primary-color);
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.faq-image {
  text-align: center;
  margin-bottom: 50px;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Contact Section */
.contact .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.contact-content {
  flex: 1;
}

.contact-image {
  flex: 1;
  text-align: center;
}

.contact-form {
  margin-top: 30px;
}

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

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

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

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

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* CTA Section */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  text-align: center;
  padding: 80px 0;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.cta .btn-primary:hover {
  background-color: transparent;
  color: white;
}

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

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

/* Footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.cta-wrapper {
  display: flex;
  gap: 10px;
}

.list-button {
  display: none;
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-logo {
    grid-column: span 3;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero .container,
  .benefits .container,
  .contact .container {
    flex-direction: column;
  }

  .hero-image,
  .benefits-image,
  .contact-image {
    order: -1;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    flex-direction: column;
  }

  .steps::before {
    display: none;
  }

  .step {
    margin-bottom: 40px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 15px;
  }

  .logo h1 {
    padding: 0;
  }

  .cta-wrapper {
    display: none;
  }

  .list-button {
    display: flex;
    gap: 10px;
    color: white;
    .cta-button {
      .btn-primary {
        color: white;
      }
    }
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: all 0.3s ease;
  }

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

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .footer-logo {
    grid-column: span 1;
  }
}

/* Process Grid - 2x2 Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-image img {
  max-width: 100%;
  max-height: 100%;
}

.process-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.process-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.displayNode {
  display: none;
}
