/* ANA SAYFA TANITIM KUTUSU */

.about{
    width:65%;
    margin:35px auto;
    background:white;
    padding:20px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.about h2{
    color:#4c1d95;
    font-size:30px;
    margin-bottom:15px;
}

.about p{
    color:#333;
    font-size:19px;
    line-height:1.6;
    margin:10px 0;
}

/* ÖZELLİK KARTLARI */

.features{
    width:90%;
    margin:40px auto 80px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.feature-card{
    width:300px;
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card h3{
    color:#5b21b6;
    font-size:28px;
    margin-bottom:15px;
}

.feature-card p{
    color:#444;
    font-size:17px;
}

/* MOR BUTON */

button{
    margin-top:20px;
    padding:14px 35px;
    border:none;
    background:linear-gradient(45deg,#2e1065,#5b21b6);
    color:white;
    font-weight:bold;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(76,29,149,0.4);
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(76,29,149,0.6);
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:34px;
    }

    .about{
        width:90%;
        padding:20px;
    }

    .feature-card{
        width:100%;
    }
}