:root {
    --primary: #00796aff;
    --secondary: #f5f7fb;
    --accent: #43a047;
    --white: #fff;
    --text: #222;
    --border-radius: 5px;
    --font-size: 1.30rem;
}

.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow Condensed', 'Inter', Arial, sans-serif;
    background: var(--secondary);
    color: var(--text);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.banner {
    background: linear-gradient(120deg, var(--primary) 40%, #a7f2ab 100%);
    padding: 0;

    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 38px;
    width: 100%;
    max-width: 950px;
    padding: 32px 18px 32px 18px;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}
.banner-info {
    color: var(--white);
    max-width: 380px;
    min-width: 220px;
}
.banner-info h1 {
    font-size: 2.5rem;
    margin: 0 0 12px 0;
    font-weight: bold;
    line-height: 1.1;
}
.banner-info p {
    font-size: 1.26rem;;
    margin-bottom: 24px;
    color: #f1f1f1;
}
.banner .cta-btn {
    background: var(--white);
    color: var(--primary);
    font-size: var(--font-size);
    padding: 14px 34px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px #1976d215;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    margin: 0;
    display: inline-block;
}
.banner .cta-btn:hover {
    background: var(--accent);
    color: var(--white);
}
.banner-illustration {
    flex: 1 1 290px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Main container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px 16px 0 16px;
    flex: 1;
}
section {
    margin: 0 0 28px 0;
    padding: 32px 28px;
}
section h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-top: 0;
    font-weight: 700;
}
ul {
    padding-left: 20px;
    margin: 20px 0 0 0;
}
ul li {
    margin-bottom: 10px;
    font-size: var(--font-size);
}
.features-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}
.feature-card {
    background: var(--secondary);
    border-radius: var(--border-radius);
    padding: 18px 14px;
    flex: 1 1 220px;
    min-width: 200px;
    box-shadow: 0 1px 6px #1976d208;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feature-icon {
    font-size: var(--font-size);
    color: var(--accent);
    margin-right: 8px;
    flex-shrink: 0;
}
.feature-text {
    font-size: var(--font-size);
    color: #1a1a1a;
}
.contact-section {
    background: var(--secondary);
    border-radius: var(--border-radius);
    padding: 22px 18px;
    margin-bottom: 24px;
    text-align: center;
}
.contact-section h3 {
    color: var(--primary);
    margin-top: 0;
    font-size:  var(--font-size);
    font-weight: 600;
}
p {
    font-size: var(--font-size);
}
footer {
    background: #c9d5d4;
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    padding: 16px 0 12px 0;
    width: 100%;
}
@media (max-width: 750px) {
    .banner-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    }
    .banner-info {
    max-width: 100%;
    }
    .banner-illustration {
    max-width: 340px;
    margin: 0 auto;
    }
    section {
    padding: 18px 7px;
    }
    .container {
    padding: 20px 6px 0 6px;
    }
}
