/* Adana, Turkey inspired styling */

body {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0;
    font-family: "Arial", "Helvetica", sans-serif;
    background: #f5f1ea;
    color: #222;
}

section {
    padding: 60px 25px;
}

/* Block 1 - Offer */
#teklif {
    background: #b01f24; /* Adana kırmızı tonları */
    color: #fff;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
}
#teklif h1 {
    font-size: 38px;
    margin-bottom: 20px;
}
#teklif p {
    font-size: 20px;
    margin-bottom: 30px;
}
#teklif .btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #b01f24;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
#teklif .btn:hover {
    background: #f0d5d6;
}

/* Block backgrounds for contrast */
#urunler { background: #fdf7f0; color: #222; }
#yorumlar { background: #1b4b5a; color: #fff; }
#egitim-medya { background: #f3e8d3; color: #222; }
#form { background: #083e44; color: #fff; }
#uzmanlar { background: #fbf4ea; color: #222; }
#iletisim { background: #e5ded3; color: #222; }
footer { background: #2a2a2a; color: #eee; text-align:center; padding: 25px; }

/* Product list */
#urunler ul, #yorumlar ul, #uzmanlar ul {
    list-style: none;
    padding: 0;
}
#urunler li, #yorumlar li, #uzmanlar li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Article highlighting */
#urunler article {
    background: #fff9e8;
    border-left: 6px solid #c44f00;
    padding: 20px;
    margin-top: 30px;
    border-radius: 6px;
}
#urunler article h3 {
    margin-top: 0;
}

/* Form styling */
#form form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#form input[type="email"],
#form input[type="text"],
#form button {
    padding: 14px;
    border-radius: 5px;
    font-size: 16px;
    border: none;
}
#form input[type="email"] {
    background: #fff;
    color: #222;
}
#form button {
    background: #f7b600;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
#form button:hover {
    background: #ffd26e;
}

/* Headings */
h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Address block */
#iletisim iframe {
    border-radius: 6px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
    }
    #teklif h1 { font-size: 30px; }
    #teklif p { font-size: 18px; }
    h2 { font-size: 26px; }
    section { padding: 45px 15px; }
}
