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

:root {
  --dark-bg: #121626;
  --card-bg: #1A1F30;
  --card-border: #2B3145;
  --text-color: #A0A9BF;
  --heading-color: #F8F9FA;
  --accent-color: #5C62F6;
  --button-bg: #F8F9FA;
  --button-text: #121626;
  --popular-tag: #5C62F6;
  --tag-text: #F8F9FA;
}

:root {
  --dark-bg: #121626;
  --card-bg: #1A1F30;
  --card-border: #2B3145;
  --text-color: #A0A9BF;
  --heading-color: #F8F9FA;
  --faq-border-gradient: linear-gradient(to right, #00C4FF, #8E2DE2);
  --faq-hover-bg: rgba(92, 98, 246, 0.05);
}

html{
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  margin: 0;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-image: radial-gradient(#2B3145 1px, transparent 1px),
    radial-gradient(#2B3145 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.header {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  margin-bottom: 50px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 25px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  margin-right: 40px;

}

.logo img {
  height: 30px;
  margin-right: 8px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav-links a:hover {
  color: #e0b0ff;
}

.btn {
  margin-left: 40px;
  background-color: #4a4a6e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3a3a5a;
}

.home {
  text-align: center;
  padding: 40px 20px;
}

.home h1 {
  font-size: 36px;
  color: #fff;
}

.hero {
  text-align: center;
  position: relative;
}

.container {
  max-width: 960px;
  /* Adjust container width */
  margin: 0 auto;
  padding: 0 20px;
  /* Add some horizontal padding */
}

.availability-indicator {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  /* Semi-transparent background */
  color: #a7a7c0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 30px;
}

.availability-indicator .dot {
  width: 8px;
  height: 8px;
  background-color: #70ed9b;
  /* Green dot color */
  border-radius: 50%;
  margin-right: 8px;
}

.hero-title {
  font-size: 36px;
  /* Adjust font size */
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #a29bfe;
  /* Purple highlight color */
}

.hero-subtitle {
  color: #a7a7c0;
  font-size: 18px;
  /* Adjust font size */
  line-height: 1.5;
  margin-bottom: 40px;
}




.hero-button {
  background-color: #ffffff;
  /* White button */
  color: #1a1a2e;
  /* Dark text */
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
  background-color: #e0e0e0;
  /* Slightly darker on hover */
}

.trust-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.star-rating {
  color: #ffc107;
  /* Gold star color */
  font-size: 16px;
  margin-bottom: 5px;
}

.trust-text {
  color: #a7a7c0;
  font-size: 14px;
}

.our-work-link {
  position: absolute;
  left: 50px;
  /* Adjust as needed */
  bottom: 30px;
  /* Adjust as needed */
  color: #a7a7c0;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.our-work-text {
  font-size: 16px;
  margin-bottom: 5px;
}

.trusted-by {
  background-color: #0f0f1a;
  padding: 60px 20px;
  text-align: center;
}

.trusted-text {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  margin-bottom: 80px;
  margin-top: 60px;
  font-size: 14px;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin-bottom: 90px
}

.trusted-logos img {
  height: 40px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* Ensures logos appear white */
  transition: transform 0.3s ease;
}

.trusted-logos img:hover {
  transform: scale(1.05);
}

.scroll-container {
  overflow: hidden;
}

.image-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
}
/* Desktop / large screen (default) */
.logos {
  display: flex;
  gap: 40px;
  justify-self: center;
  margin-bottom: -5rem;
}


.we-get-you {
  background-color: #f5f2f8;
  /* Light lavender/grey */
  color: #111;
  /* Dark text */
  padding: 100px 20px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.we-get-you h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
}

.problem-solution-section {
  background-color: #f7f7fa;
  /* Light background as in the image */
  width: 99vw;
  padding: 80px 0px;
  /* Vertical padding for spacing */
  color: #333;
  /* Darker text for readability on light background */
  text-align: center;
  /* Center the heading */

}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow cards to wrap to the next line on smaller screens */

  gap: 30px;
  /* Space between cards */
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 60px;
  /* Space below the title */
  color: #4a4a6e;
  /* Darker color for the title */
}

.card {
  /* background-color: #ffffff; */
 color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  /* Allow cards to grow and shrink */
  min-width: 30px;
  /* Minimum width for cards before wrapping */
  max-width: 30%;
  /* Approx one-third width for three columns (adjust based on gap) */
  display: flex;
  /* Make card content a flex column */
  ;
  flex-direction: column;
  align-items: center;
  /* Center content within the card */
}

.card:hover {
  box-shadow: 0 4px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
  transition: .4s ease-in-out;
}

.card-icon {
  width: 60px;
  /* Size for the icon container */
  height: 60px;
  background-color: #f0e6fa;
  /* Light purplish background for icon */
  border-radius: 50%;
  /* Make it a circle */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  /* Space below the icon */

}

.services {
  color: #111;
  /* Dark text */
  padding: 100px 20px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.services p {
  font-size: 20px;
  font-weight: 100;
  color: #111;
  margin-top: 15px;
}

.services button .active {
  background-color: #1a1a2e;
  color: #fff;
}

.services button {
  background-color: #ffffff;
  margin-top: 30px;
  color: #1a1a2e;
  /* Dark text */
  border-color: #1a1a2e;
  border-radius: 10px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.services button:hover {
  background-color: #1a1a2e;
  color: #fff;
}

.main-wrapper {
  display: flex;
  max-width: 1200px; /* Adjust as needed */
  justify-self: center;
  margin-top: 4rem;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px;
}

.info-panel {
  flex: 1;
  padding-right: 40px;
}

.info-panel h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b; /* Dark grey text */
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.info-panel p {
  color: #475569; /* Medium grey text */
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  background-color: #f0f0f0; 
  color: #334155; 
  border-radius: 6px ;
  padding: 8px 12px;
  font-size: 1rem;
  font-weight: 100;
}
.tag-list li.figma-tag::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url('img/Image\ [vectors-wrapper-57].png');
  background-size: contain;
  margin-right: 6px;
}
.tag-list li.webflow-tag::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url('img/Image\ [vectors-wrapper-58].png');
  background-size: contain;
  margin-right: 6px;
}


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

.screen-mockup {
  background-color: #e5e7eb; /* Light grey mockup background */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
}

.screen-mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit; /* Inherit border-radius from parent */
}
/* 
.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.benefits h1 {
  font-size: 20px;
  color: #111;
}

.benefits p {
  font-size: 20px;
  font-weight: 100;
  margin-top: 20px;
  color: #1a1a2e;
}

.benefit {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin-top: 80px;
}

.benefit h1 {
  font-size: 20px;
  color: #111;
}

.benefit p {
  font-size: 20px;
  font-weight: 100;
  margin-top: 20px;
  color: #1a1a2e;
} */
/* Base layout (large screens) */
.content-box {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 60px;
  text-align: center;
  max-width: 1200px;
  flex-wrap: wrap;
}

.content-box h3 {
  margin-bottom: 25px;
}

.frame {
  flex: 1 1 300px; /* each card flexible but keeps a minimum width */
  max-width: 350px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.4s ease-in-out;
}

.frame:hover {
  transform: scale(1.05);
}
.testimonials {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin-top: 100px;
  font-size: 50px;
  font-weight: 100;
  color: #1a1a2e;
}

.client-testimonials {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
  margin-top: 100px;
  font-size: 50px;
  font-weight: 100;
  color: #1a1a2e;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  border: none;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: scroll-left 30s linear infinite;
}

.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: bold;
  color: #111827;
}

.author-title {
  font-size: 14px;
  color: #6b7280;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 10px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: scroll-right 30s linear infinite;
  width: fit-content;
}

.packages {
  text-align: center;
  padding: 50px 20px;
}

.subtitle {
  color: #6f7d9c;
  font-size: 14px;
  letter-spacing: 2px;
}

.title {
  font-size: 28px;
  margin-bottom: 40px;
}

.package-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #141827;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  text-align: left;
  position: relative;
}

.popular {
  border: 2px solid #00aaff;
}

.badge {
  background: #00aaff;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  position: absolute;
  top: -15px;
  left: 20px;
  border-radius: 5px;
}

.btn {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.decs {
  font-size: 300px;
}

.btn:hover {
  background: #ddd;
}

.spots {
  color: #00aaff;
  font-size: 14px;
}

ul {
  margin-top: 20px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

.guarantee {
  font-size: 14px;
  margin-top: 15px;
  color: #a3ffb5;
}

.tags span {
  display: inline-block;
  background: #1e2435;
  padding: 5px 8px;
  margin: 4px;
  border-radius: 5px;
  font-size: 12px;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.package {
  margin-bottom: 3rem;
  margin-top: 30px;
}

.package h1 {
  /* justify-content: center; */
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin: 0;
}

.package h3 {
  /* justify-content: center; */
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 1rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.package-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card.popular {
  border: 1px solid var(--accent-color);
  padding-top: 3.5rem;
}

.package-card.popular .popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-color);
  color: var(--tag-text);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.card-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.card-header p {
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: var(--text-color);
  min-height: 50px;
}

.cta-button {
  background-color: var(--button-bg);
  color: var(--button-text);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  ;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #383e54;
  color: #fff;
}

.spots-available {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--accent-color);
  font-weight: 500;
}

.divider {
  height: 1px;
  background-color: var(--card-border);
  margin: 2rem 0;
}

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

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.features-list li svg {
  margin-right: 0.75rem;
  color: #4CAF50;
  /* Green checkmark */
  flex-shrink: 0;
}

.features-list li.pro-feature svg {
  color: var(--accent-color);
  /* Purple star */
}

.features-list li.pro-feature {
  position: relative;
}

.features-list li.pro-feature .pro-tag {
  background-color: #332C4A;
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.footer-cta {
  margin-top: auto;
}

.refund-guarantee {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
}

.refund-guarantee svg {
  margin-right: 0.75rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.custom-project-card .cta-button {
  margin-top: 2rem;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.custom-project-card .cta-button:hover {
  background-color: rgba(92, 98, 246, 0.1);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-tag {
  background-color: #2B3145;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.custom-project-card p {
  min-height: 50px;
}

.add-on-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.add-on-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 1.5rem 0;
}


.guarantee-card {
  margin-top: 30px;
  /* margin-left: 15rem; */
  justify-self: center;
  background-color: #1A1F30;
  border: 1px solid #2B3145;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 50px rgba(92, 98, 246, 0.2);
}

.guarantee-card>div:first-child {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5C62F6;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 4px 15px rgba(92, 98, 246, 0.5);
}

.guarantee-card>div:first-child svg {
  color: white;
  width: 24px;
  height: 24px;
}

.guarantee-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #F8F9FA;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.guarantee-card h2 span {
  color: #5C62F6;
}

.guarantee-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #A0A9BF;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top, rgba(92, 98, 246, 0.2) 0%, rgba(92, 98, 246, 0) 70%);
  z-index: -1;
  border-radius: 12px;
}

.stripe-info {
  color: #F8F9FA;
  font-size: 0.9rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
  text-align: center;
}

.about-card {
  justify-self: center;
  background-color: #1A1F30;
  border: 1px solid #2B3145;
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
  max-width: 1200px;
  width: 100%;
}

.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #F8F9FA;
  line-height: 1.2;
  margin: 0;
}

.right-content {
  flex: 1;
  
}

.right-content p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.locations {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.location-tag {
  background-color: #2B3145;
  color: #A0A9BF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-tag svg {
  width: 14px;
  height: 14px;
}

.about-card {
  background-color: #1A1F30;
  border: 1px solid #2B3145;
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
  max-width: 900px;
  width: 100%;
}

.image-container {
  flex-basis: 30%;
  /* Adjust width of image container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* Optional: adds rounded corners to the image */
}

.right-content {
  flex-basis: 70%;
  /* Adjust width of content container */
}

.right-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #F8F9FA;
  line-height: 1.2;
  margin: 0;
}

.right-content p {
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.locations {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.location-tag {
  background-color: #2B3145;
  color: #A0A9BF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-tag svg {
  width: 14px;
  height: 14px;
}

.priority-card {
  background-color: #1A1F30;
  border: 1px solid #2B3145;
  border-radius: 12px;
  padding: 3rem;
  justify-self: center;
  margin-top: 30px;
  max-width: 1200px;
  width: 100%;
}

.priority-card h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  margin: 0 0 1rem 0;
}

.priority-card h2 span {
  color: var(--accent-color);
}

.priority-card p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.our-design {
  background-color: #fff;
  color: #1a1a2e;
  border: 1px solid #1a1a2e;
  border-radius: 1px;
  ;
  padding: 3rem;
  justify-self: center;
  margin-top: 30px;
  width: 99vw;
}

.our-vision {
  text-align: center;
  margin-top: 9%;
  margin-bottom: 8%;
}

.our-vision h1 {
  font-weight: 200;
  font-size: 40px;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8%;
  margin-bottom: 8%;
}

.benefits img {
  margin-bottom: 15%;
}

.partner {
  text-align: center;
  margin-top: 10rem;
  font-size: 30px;
}

.partner h1 {
  font-weight: 200;
}

.tags-container {
  display: flex;
  margin-top: 30px;
  margin-bottom: 6%;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  gap: 1rem;
  max-width: 900px;
  width: 100%;
}

.tags-container .tag {
  background-color: #E2E8F0;
  border: 1px solid #CBD5E0;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #4A5568;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq {
  text-align: center;
}

.faq p {
  font-size: 40px;
  font-weight: 100;
}

.faq-section {
  justify-self: center;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid;
  border-image-slice: 1;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: background-color 0.2s ease, padding 0.2s ease;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.faq-item:hover .faq-question {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.faq-item:hover {
  /* background-color: var(--faq-hover-bg); */
  border-radius: 8px;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  /* color: var(--text-color); */
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1rem;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust as needed */
  padding: 1rem 1rem 0 1rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  border: 1px solid var
  (--card-border);
  border-radius: 12px;
  justify-self: center;
  margin-top: 4rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.footer-logo svg {
  margin-right: 0.5rem;
}

.footer-description {
  max-width: 250px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-guarantee {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.footer-guarantee svg {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.5rem 0;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-color);
}

.footer-bottom a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 1rem;
}

