
/*HERO SECTION*/
.hero{
    padding:100px 0;
    background:#faf8f2;
    overflow:hidden;
}

.hero .container{
    max-width:1300px;
    margin:auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero__content{
    max-width:580px;
}

.hero__eyebrow{
    display:block;
    color:#4c7a3f;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero__title{
    font-size:72px;
    line-height:1.05;
    font-weight:700;
    margin-bottom:25px;
}

.hero__title span{
    color:#5d8c47;
}

.hero__description{
    font-size:22px;
    line-height:1.8;
    color:#555;
    margin-bottom:35px;
}

.hero__button{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 40px;

    border-radius:14px;

    background:#4f7d3f;
    color:#fff;

    text-decoration:none;
    font-weight:600;
}

.hero__visual{
    position:relative;
}

.hero-image img{
    width:100%;
    display:block;
}

.hero-card{
    position:absolute;

    background:#fff;

    border-radius:20px;

    padding:18px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    display:flex;
    align-items:center;
    gap:12px;
}

.hero-card img{
    width:40px;
    height:40px;
}

.hero__trust{
    margin-top:40px;

    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:10px;
}


/*ASSESSMENT SECTION*/
.assessment-section{
    padding:80px 0;
}

.assessment-banner{
    display:grid;
    grid-template-columns:200px 1fr auto;
    align-items:center;
    gap:40px;

    padding:40px;
    border-radius:24px;

    background:#faf7f1;
    margin-bottom:60px;
}

.assessment-banner__image img{
    max-width:160px;
}

.assessment-banner__content h2{
    font-size:42px;
    margin-bottom:10px;
}

.assessment-banner__content p{
    color:#666;
}

.assessment-btn{
    display:inline-flex;
    align-items:center;
    padding:16px 32px;

    background:#45683D;
    color:#fff;

    border-radius:12px;
    text-decoration:none;
}

.assessment-banner__action{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.stats-heading{
    font-size:42px;
    margin-bottom:30px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border:1px solid #eee;

    border-radius:24px;
    padding:30px;

    position:relative;
    overflow:hidden;
}

.stat-card h3{
    font-size:36px;
    margin-bottom:15px;
}

.stat-card p{
    color:#666;
    line-height:1.7;
}

.graph-line{
    width:100%;
    height:70px;
    margin-top:30px;
}

/*EXPLORE RESOUCES SECTION*/

/* ==========================================
   Explore Resources Section
========================================== */

.explore-resources{
    padding: 80px 0;
}

.explore-resources .container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f1f1f;
}

/* ==========================================
   Resource Cards
========================================== */

.explore-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
}

.explore-card{
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all .3s ease;
}

.explore-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

.explore-icon{
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f6ee;
    border-radius: 50%;
}

.explore-icon img{
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.explore-card h3{
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: #1f1f1f;
}

.explore-card p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.explore-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #4c7342;
    text-decoration: none;
    font-weight: 600;
}

.explore-link:hover{
    color: #35572c;
}

/* ==========================================
   View All Resources
========================================== */

.resources-view-all{
    text-align: center;
    margin-top: 35px;
    margin-bottom: 60px;
}

.resources-view-all a{
    text-decoration: none;
    color: #45683d;
    font-weight: 600;
    font-size: 1.1rem;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.resources-view-all a:hover{
    color: #2f4d28;
}

/* ==========================================
   Featured Article
========================================== */

.featured-article{
    background: #faf7f1;
    border: 1px solid #ece7dc;
    border-radius: 28px;

    padding: 0;

    display: grid;
    grid-template-columns: 340px 1fr auto;
    align-items: center;

    overflow: hidden;
}

.featured-article__image{
    height: 100%;
}

.featured-article__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-article__content{
    padding: 40px;
}

.featured-badge{
    display: inline-flex;
    align-items: center;

    padding: 8px 16px;

    background: #fff;
    border-radius: 12px;

    font-size: .85rem;
    font-weight: 600;

    color: #444;

    margin-bottom: 18px;
}

.article-label{
    display: block;

    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #777;

    margin-bottom: 12px;
}

.featured-article__content h2{
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.featured-article__content p{
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
}

.article-meta{
    margin-top: 24px;

    display: flex;
    gap: 30px;

    color: #666;
    font-size: .95rem;
}

.featured-article__action{
    padding-right: 40px;
}

.article-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 28px;

    border: 2px solid #45683d;
    border-radius: 14px;

    text-decoration: none;
    color: #45683d;
    font-weight: 600;

    transition: .3s;
}

.article-button:hover{
    background: #45683d;
    color: #fff;
}

/* ==========================================
   Tablet
========================================== */

@media(max-width:1024px){

    .featured-article{
        grid-template-columns: 1fr;
    }

    .featured-article__action{
        padding: 0 40px 40px;
    }

}

/* ==========================================
   Mobile
========================================== */

@media(max-width:768px){

    .section-title{
        font-size: 2rem;
    }

    .explore-grid{
        grid-template-columns: 1fr;
    }

    .featured-article__content{
        padding: 25px;
    }

    .featured-article__content h2{
        font-size: 1.9rem;
    }

    .featured-article__action{
        padding: 0 25px 25px;
    }

    .article-meta{
        flex-direction: column;
        gap: 10px;
    }

}