body {
    font-family: "Montserrat", serif;
    margin: 0;
    padding: 0;
}
.link {
    text-decoration: none;
    color: #FFFFFF;
}
.container {
    width: 80%;
    margin: 0 auto;
}

/* HEADER */
.header {
    background: #161C2B;
    color: #FFFFFF;
    padding: 2px;
}
.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav {
    display: flex;
    gap: 124px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400; 
    line-height: 19.5px;
}

/* HERO SECTION */
.hero {
    background: url('./assets/banner.jpg') no-repeat center center/cover;
    color: #FFFFFF;
    height: 450px;
}
.hero-title {
    margin: 0;
    padding-top: 100px;
    font-size: 48px;
    line-height: 44px;
    font-weight: 600;
    width: 800px;
}
.green {
    color: #42D28F;
}
.hero-description {
    margin-top: 40px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    width: 620px;
}

/* FEATURES SECTION */
.features {
    background-color: #F3F3F7;
}
.features-title {
    margin: 0;
    padding-top: 73px;
    text-align: center;
    font-size: 42px;
    line-height: 51.2px;
    font-weight: 600;
    color: #000000;
}
.features-description {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    text-align: center;
}
.features-list {
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.feature {
    margin-bottom: 57px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #000000;
    height: 60px;
}
.feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: #AFAFAF;
    border-radius: 2px;
}

/* FEATURES AND BENEFITS SECTION */
.benefits {
    background-color: #FFFFFF;
}
.benefits-title {
    margin: 0;
    padding-top: 78px;
    font-size: 42px;
    font-weight: 600;
    line-height: 51.2px;
    text-align: center;
}
.benefits-list {
    margin-top: 80px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.benefit-row {
    display: flex; 
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start; 
    gap: 40px; 
}
.benefit {
    display: flex;
    flex-direction: column;
    max-width: 470px;
}
.benefit img {
    max-width: 100%;
    height: auto;
}
.benefit-title,
.benefit-description {
    max-width: 470px;
}
.benefit-title {
    margin-top: 24px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
}
.benefit-description {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}

/* ELEVATE YOUR VA ADVOCACY SECTION */
.advocacy {
    background-color: #56A97526;
}
.advocacy-title {
    margin: 0;
    padding-top: 61px;
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    text-align: center;
}
.advocacy-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat {
    margin: 80px 0px;
    text-align: center;
    width: 260px;
}
.stat h3 {
    margin: 0;
    padding-bottom: 40px;
    font-size: 64px;
    line-height: 26px;
    font-weight: 400;
}
.stat p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    white-space: pre-line;
}
.stat span {
    font-weight: 400;
}

/* ABA GUIDELINES SECTION */
.aba-guidelines {
    background-color: #FFFFFF;
}
.aba-guidelines-title {
    margin: 0;
    padding-top: 70px;
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    text-align: center;
}
.aba-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 150px;
    margin: 70px 0px 90px 0px;
}
.aba-logo img {
    max-width: 100%;
    height: auto;
}
.aba-text p {
    margin: 0;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    white-space: pre-line;
}
.aba-text span {
    font-weight: 400;
}

/* FORM SECTION */
.form-section {
    background-color: #F3F3F7;
}
.form-section-title {
    margin: 0 auto;
    padding-top: 56px;
    font-size: 42px;
    line-height: 51.2px;
    font-weight: 600;
    text-align: center;
    width: 500px;
}
.demo-form {
    padding-top: 47px;
    max-width: 800px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.form-group {
    flex: 1;
    text-align: left;
}
.form-group input {
    width: 100%;
    font-size: 16px;
    padding: 20px 0px;
    border: none;
    background-color: #F3F3F7;
    border-bottom: 1px solid #000000;
}
.form-group input:focus {
    outline: none;
    border-bottom: 1px solid #000000;
}
.btn-submit {
    width: 100%;
    padding: 15px 0px;
    background-color: #212529;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 50px 0px 77px 0px;
}

/* FOOTER */
.footer {
    background: #161C2B;
}
.footer-container {
    width: 90%;
    margin: 0 auto;
}
.footer-items {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 33px;
}
.logo p {
    color: #646464;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px;
    cursor: default;
}
.footer-nav {
    padding-top: 50px;
    display: flex;
    gap: 200px;
}
.socials {
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.socials p {
    margin: 0;
    padding-right: 51px;
    color: #646464;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.29px;
    cursor: default;
}
.socials img {
    cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title {
        width: 500px;
    }
    .stat {
        width: 220px;
    }
    .footer-nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .socials p {
        padding-right: 21px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        text-align: center;
        width: 100%;
    }
    .hero-description {
        font-size: 24px;
        text-align: center;
        width: 100%;
}
    .benefit-row {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
    }
    .benefit {
        max-width: 400px;
    }
    .benefit-title,
    .benefit-description {
        max-width: 400px;
    }
    .stat {
        width: 150px;
    }
    .stat h3 {
        font-size: 54px;
    }
    .aba-content {
        gap: 60px;
    }
    .aba-text p {
        font-size: 20px;
    }
    .logo {
        display: flex;
        flex-direction: column;
    }
    .logo img {
        width: 50%;
        margin: 0 auto;
    }
    .footer-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 33px;
    }
    .footer-nav {
        padding-top: 30px;
        display: flex;
        gap: 30px;
    }
    .socials {
        padding-top: 30px;
    }
    .socials p {
        padding-right: 21px;
    }
}

@media (max-width: 425px) {
    .nav {
        gap: 30px;
        font-size: 12px;
    }
    .hero-title {
        padding-top: 64px;
        font-size: 32px;
    }
    .hero-description {
        font-size: 18px;
    }
    .features-title,
    .benefits-title,
    .advocacy-title,
    .aba-guidelines-title,
    .form-section-title {
        font-size: 32px;
    }
    .features-description {
        font-size: 18px;
    }
    .features-list {
        margin-top: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0px;
    }
    .form-section-title {
        width: 100%
    }
    .feature {
        margin-bottom: 32px;
        font-size: 16px;
    }
    .benefits-title,
    .features-title {
        padding-top: 32px;
    }
    .benefits-list {
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .advocacy-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stat {
        margin: 42px 0px;
    }
    .stat h3 {
        margin: 0;
        padding-bottom: 24px;
        font-size: 48px;
    }
    .aba-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 18px 0px 70px 0px;
    }
    .aba-text p {
        text-align: center;
    }
    .demo-form {
        padding-top: 32px;
        max-width: 800px;
        margin: 0 auto;
    }
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0px;
        }
    .form-group {
        flex: 1;
        text-align: left;
    }
    .btn-submit {
        margin: 56px 0px;
    }
}