/* Genel Gövde Ayarları */
body {
    margin: 0 auto;
    padding: 0;
    max-width: 1090px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    background-color: #f4f4f4;
    color: #222;
}

section {
    padding: 40px 25px;
}

h1, h2, h3 {
    margin-top: 0;
}

/* BLOK 1: OFFER */
#offer {
    min-height: 470px;
    background: linear-gradient(135deg, #0d3b66, #1d5fa7);
    color: #ffffff;
    text-align: center;
    padding: 70px 30px;
    border-radius: 8px;
}
#offer p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.15rem;
}
#offer .btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
}
#offer .btn:hover {
    background: #ffe27a;
}

/* BLOK 3: ÜRÜNLER */
#products {
    background: #fff5e1;
    color: #3a2e1f;
    border-radius: 6px;
}
#products ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}
#products article {
    background: #fff;
    border-left: 6px solid #d9852c;
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}
#products article h3 {
    margin-top: 0;
}

/* BLOK 5: YORUMLAR */
#reviews {
    background: #dfeeff;
    color: #0d2a44;
    border-radius: 6px;
}
#reviews ul li {
    margin-bottom: 10px;
}

/* BLOK 2: FORM */
#subscribe {
    background: #ececec;
    color: #222;
    border-radius: 6px;
}
#subscribe form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#subscribe input[type="email"] {
    padding: 12px;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 1rem;
}
#subscribe button {
    background: #006b3a;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
#subscribe button:hover {
    background: #0c8d4c;
}

/* BLOK 4.1: EĞİTİM */
#teaching {
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* BLOK 4: UZMANLAR */
#specialists {
    background: #ffe8f0;
    color: #5a0033;
    border-radius: 6px;
}
#specialists ul li {
    margin-bottom: 10px;
}

/* BLOK 6: ADRES */
#address {
    background: #e9f7ef;
    color: #064025;
    border-radius: 6px;
}

iframe {
    border-radius: 6px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px 0;
    background: #0d3b66;
    color: #fff;
    border-radius: 6px;
    margin-top: 25px;
}

/* BUTTON GENEL STİLLERİ */
button, .btn {
    cursor: pointer;
}

/* MOBIL UYUMLULUK */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    #offer {
        padding: 50px 20px;
    }
    #products article {
        padding: 15px;
    }
    #subscribe form {
        width: 100%;
    }
}
