/* Import Inter font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Base styles and variables */
:root {
  --primary-color: #02b3b3;
  --light-bg: #02b3b31a;
  --white: #fff;

  --section-spacing: 80px;

  --font-family: "Inter", Arial, sans-serif;

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  --desktop-width: 1240px;
  --tablet-width: 720px;
  --mobile-width: 340px;
}

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

body {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
}

.container {
  width: var(--desktop-width);
  margin: 0 auto;
}

p {
  margin-bottom: 15px;
}


ul.no-bullets {
  list-style-type: none;
}

li {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Heading Variants */
.h1 {
  font-size: 3rem;
  font-weight: var(--font-semibold);
}

.h2 {
  font-size: 1.875rem;
  font-weight: var(--font-semibold);
}

.h3 {
  font-size: 1.5rem;
  font-weight: var(--font-semibold);
}

.h4 {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
}

/* Body Text Variants */
.body1 {
  font-size: 1.25rem;
  font-weight: var(--font-normal);
}

.body2 {
  font-size: 1.125rem;
  font-weight: var(--font-medium);
}

.body3 {
  font-size: 1rem;
  font-weight: var(--font-medium);
}

.body4 {
  font-size: 1rem;
  font-weight: var(--font-normal);
}

.body5 {
  font-size: 0.875rem;
  font-weight: var(--font-medium);
}

.body6 {
  font-size: 0.875rem;
  font-weight: var(--font-normal);
}

/* Mobile-Specific Variants */
.mobileTextTitle2 {
  font-size: 1rem;
  font-weight: var(--font-semibold);
}

.mobileTitle {
  font-size: 0.75rem;
  font-weight: var(--font-medium);
}

.mobileText {
  font-size: 0.75rem;
  font-weight: var(--font-normal);
}

.mobileSmallText {
  font-size: 0.625rem;
  font-weight: var(--font-normal);
}

/* Header styles */
.header {
  text-align: center;
}

.logo {
  height: 60px;
  padding: 15px 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  height: 32px;
}

/* Hero section */
.hero {
  background-color: var(--light-bg);
  margin-bottom: 40px;
  position: relative;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-main {
  display: flex;
  flex-direction: row;
  gap: 24px;

  padding-top: 100px;
  justify-content: center;
  width: var(--desktop-width);
  height: 600px;
  margin: 0 auto;
}

.hero-text {
  width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  width: 650px;
}

.hero-curve {
  width: 100%;
  margin: 0;
  display: block;
  height: 280px;
}

/* Benefits section */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 78px;
  margin-bottom: 40px;
}
.benefits-header {
  margin-bottom: 60px;
  text-align: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefit-item.reverse {
  flex-direction: row-reverse;
}

.benefit-content {
  width: 434px;
  display: flex;
}

.benefit-icon {
  width: 37px;
  margin-right: 20px;
}

.benefit-text {
  flex: 1;
}

.benefit-image {
  width: 580px;
}

/* How it works section */
.how-it-works {
  padding: 80px 0;
}

.how-it-works {
  background-color: #fbfbfb;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.how-it-works .title-section {
  text-align: center;
  width: var(--desktop-width);
  margin: 0 auto;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: var(--desktop-width);
  margin: 0 auto;
}

.step {
  align-items: center;
  width: 280px;
}

.step-number {
  background-color: var(--primary-color);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-image {
  align-items: center;
  margin-bottom: 20px;
}

.step-image img {
  height: 200px;
  display: block;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1260px) {
  .container {
    width: var(--tablet-width);
  }

  .hero-main {
    padding-top: 0px;
    width: var(--tablet-width);
    height: 300px;
    margin-bottom: -76px;
  }

  .hero-text {
    width: 317px;
  }

  .hero-image {
    width: 333px;
  }

  .hero-curve {
    height: 148px;
  }

  .md\:h1 {
    font-size: 2.5rem;
    font-weight: var(--font-semibold);
  }

  .md\:h2 {
    font-size: 1.875rem;
    font-weight: var(--font-semibold);
  }

  .md\:h3 {
    font-size: 1.5rem;
    font-weight: var(--font-semibold);
  }

  .md\:h4 {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
  }

  .md\:h5 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
  }

  .md\:body1 {
    font-size: 1.25rem;
    font-weight: var(--font-normal);
  }

  .md\:body2 {
    font-size: 1.125rem;
    font-weight: var(--font-medium);
  }

  .md\:body3 {
    font-size: 1rem;
    font-weight: var(--font-medium);
  }

  .md\:body4 {
    font-size: 1rem;
    font-weight: var(--font-normal);
  }

  .md\:body5 {
    font-size: 0.875rem;
    font-weight: var(--font-medium);
  }

  .md\:body6 {
    font-size: 0.875rem;
    font-weight: var(--font-normal);
  }

  .md\:mobileTextTitle2 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
  }

  .md\:mobileTitle {
    font-size: 0.75rem;
    font-weight: var(--font-medium);
  }

  .md\:mobileText {
    font-size: 0.75rem;
    font-weight: var(--font-normal);
  }

  .md\:mobileSmallText {
    font-size: 0.625rem;
    font-weight: var(--font-normal);
  }

  .benefits {
    gap: 56px;
  }

  .benefit-icon {
    width: 24px;
  }

  .benefit-content {
    width: 330px;
  }

  .benefit-image {
    width: 300px;
  }

  .how-it-works {
    padding: 40px 0;
  }

  .how-it-works .title-section {
    width: var(--tablet-width);
  }

  .steps {
    width: var(--tablet-width);
  }

  .step {
    width: 200px;
  }

  .step-image img {
    height: 125px;
  }
}

/* Responsive styles - Mobile */
@media (max-width: 768px) {
  .container {
    width: var(--mobile-width);
  }

  .logo-icon {
    height: 24px;
  }

  .hero-main {
    width: var(--mobile-width);
    flex-direction: column;
    gap: 16px;
    height: 550px;
    padding-top: 24px;
    margin-bottom: -52px;
  }

  .hero-text {
    width: var(--mobile-width);
  }

  .hero-text-header {
    text-align: center;
  }

  .hero-image {
    width: var(--mobile-width);
  }

  .hero-curve {
    height: 76px;
  }

  .benefits {
    gap: 60px;
    margin-bottom: 60px;
  }

  .benefit-item,
  .benefit-item.reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .how-it-works .title-section {
    width: var(--mobile-width);
    margin-bottom: 24px;
  }

  .steps {
    flex-direction: column;
    width: var(--mobile-width);
  }

  .step {
    width: var(--mobile-width);
  }

  .sm\:h1 {
    font-size: 2rem;
    font-weight: var(--font-semibold);
  }

  .sm\:h2 {
    font-size: 1.75rem;
    font-weight: var(--font-semibold);
  }

  .sm\:h3 {
    font-size: 1.5rem;
    font-weight: var(--font-semibold);
  }

  .sm\:h4 {
    font-size: 1.25rem;
    font-weight: var(--font-semibold);
  }

  .sm\:body1 {
    font-size: 1.125rem;
    font-weight: var(--font-normal);
  }

  .sm\:body2 {
    font-size: 1rem;
    font-weight: var(--font-medium);
  }

  .sm\:body3 {
    font-size: 1rem;
    font-weight: var(--font-medium);
  }

  .sm\:body4 {
    font-size: 0.875rem;
    font-weight: var(--font-normal);
  }

  .sm\:body5 {
    font-size: 0.875rem;
    font-weight: var(--font-medium);
  }

  .sm\:body6 {
    font-size: 0.75rem;
    font-weight: var(--font-normal);
  }

  .sm\:mobileTextTitle2 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
  }

  .sm\:mobileTitle {
    font-size: 0.75rem;
    font-weight: var(--font-medium);
  }

  .sm\:mobileText {
    font-size: 0.75rem;
    font-weight: var(--font-normal);
  }

  .sm\:mobileSmallText {
    font-size: 0.625rem;
    font-weight: var(--font-normal);
  }

  .benefits-header {
    margin-bottom: 24px;
  }

  .benefit-content {
    width: var(--mobile-width);
  }

  .benefit-image {
    width: var(--mobile-width);
  }

  .step-image img {
    height: auto;
  }
}

/* Responsive styles - Small Mobile */
@media (max-width: 389px) {
  .container {
    width: 100%;
  }

  .hero-main {
    width: 100%;
    padding: 0 20px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text-header {
    text-align: center;
  }

  .hero-image {
    width: 100%;
  }

  .hero-curve {
    height: 76px;
  }

  .benefits-header,
  .benefit-item {
    width: 100%;
    padding: 0 20px;
  }

  .benefit-content {
    width: 100%;
  }

  .benefit-image {
    width: 100%;
  }

  .how-it-works .title-section {
    width: 100%;
  }
  .steps {
    width: 100%;
  }

  .step {
    width: 100%;
    padding: 0 20px;
  }
}
