*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    color:#333;
}

/* HEADER */

header{
    background:#14532d;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    height:70px;
    width:auto;
}

.logo-area span{
    color:white;
    font-size:32px;
    font-weight:bold;
}

/* MENÜ */

nav ul{
    display:flex;
    list-style:none;
    gap:5px;
}

nav ul li a{
    display:block;
    padding:14px 16px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    transition:.3s;
}

nav ul li a:hover{
    background:#1e7a45;
    border-radius:5px;
}

/* HERO */

.hero{
    background:white;
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    color:#14532d;
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    color:#666;
}

/* CONTAINER */

.container{
    max-width:1200px;
    margin:auto;
    padding:30px 20px;
}

/* KARTLAR */

.kartlar{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:30px;
}

.kategori{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
}

.kategori h2{
    color:#14532d;
    margin-bottom:15px;
}

.kategori p{
    margin-bottom:20px;
    line-height:1.6;
}

.kategori a{
    display:inline-block;
    background:#14532d;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:5px;
}

.kategori a:hover{
    background:#1e7a45;
}

/* REKLAM */

.reklam{
    background:#ececec;
    border:2px dashed #999;
    text-align:center;
    padding:50px;
    margin:30px 0;
    font-size:22px;
    font-weight:bold;
}

/* FOOTER */

footer{
    background:#14532d;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}

/* DUA SAYFALARI */

.ayet-bolumleri{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin:25px 0;
}

.ayet-kart{
    flex:1;
    min-width:300px;
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
    border-top:4px solid #14532d;
}

.ayet-kart h2{
    color:#14532d;
    margin-bottom:15px;
}

.besmele,
.besmele-anlam{
    color:#14532d;
    font-weight:bold;
    margin-bottom:15px;
}

.ayet-kart ol{
    padding-left:20px;
}

.ayet-kart li{
    margin-bottom:10px;
    line-height:1.7;
}

.faziletler-section{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
    margin:30px 0;
}

.faziletler-section h2{
    color:#14532d;
    margin-bottom:15px;
}

.spot-text{
    margin-bottom:20px;
}

.fazilet-listesi{
    list-style:none;
}

.fazilet-listesi li{
    background:#f8f8f8;
    border-left:5px solid #14532d;
    padding:15px;
    margin-bottom:15px;
    border-radius:5px;
}

.fazilet-listesi strong{
    display:block;
    margin-bottom:10px;
    color:#14532d;
}

.inis-section{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.inis-section h2{
    color:#14532d;
    margin-bottom:15px;
}

.inis-section p{
    margin-bottom:15px;
    line-height:1.8;
}

/* MOBİL */

@media(max-width:900px){

    header{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo-area span{
        font-size:24px;
    }

    .hero h1{
        font-size:30px;
    }

    .kartlar{
        grid-template-columns:1fr;
    }

    .ayet-bolumleri{
        flex-direction:column;
    }

    .ayet-kart{
        min-width:100%;
    }
}