.about-page{
    background:#fff;
}

.about-page h1{
    font-size:48px;
    font-weight:800;
    color:#222;
}

.about-page p{
    line-height:1.8;
}

.card{
    border-radius:16px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

@media(max-width:768px){

.about-page h1{
    font-size:34px;
}

}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f6fbf6 100%
    );
}

.about-tag{
    display: inline-block;
    color: #2e7d32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-title{
    font-size: 52px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
}

.about-text{
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-btn{
    background: #644ae4;
    color: #fff;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn:hover{
    background: #256428;
    color: #fff;
    transform: translateY(-2px);
}

.about-image-box{
    position: relative;
}

.about-image{
    width: 100%;
    border-radius: 24px;
    border: 1px solid #d1fae5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .about-section{
        padding: 80px 0;
    }

    .about-title{
        font-size: 42px;
    }
}

@media (max-width: 768px){

    .about-section{
        padding: 60px 0;
    }

    .about-title{
        font-size: 32px;
    }

    .about-text{
        font-size: 16px;
    }

    .about-btn{
        width: 100%;
        text-align: center;
    }

    .about-image{
        margin-top: 20px;
    }
}

.cta-section{
    padding:100px 0;
    background:#f8f9fa;
}

.cta-section .container{
    background:linear-gradient(135deg,#198754,#2fbf71);
    color:#fff;
    padding:70px 50px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(25,135,84,0.25);
}

.cta-section h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.8;
}

.cta-section .btn{
    padding:14px 40px;
    border-radius:50px;
    font-weight:600;
}

@media(max-width:768px){

    .cta-section .container{
        padding:50px 25px;
        border-radius:20px;
    }

    .cta-section h2{
        font-size:32px;
    }

}