/* =================================
   Genel Stil ve Sıfırlama
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Yarı-serif/Sistem yazı tipleri (Google Fonts kullanılmadı) */
body {
    font-family: Arial, Helvetica, sans-serif, 'Segoe UI', Tahoma, Geneva, Verdana;
    color: #333333; /* Koyu Gri metin */
    background-color: #f8f8f8; /* Açık Gri arka plan */
    line-height: 1.6;
}

/* Sayfa Genişliği ve Ortalaması */
body {
    max-width: 1090px;
    margin: 0 auto; /* Merkezi Konumlandırma */
    background-color: #ffffff; /* Ana içeriğin arka planı */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); /* Hafif gölge */
}

/* =================================
   Başlık ve Blok Yapısı
   ================================= */
header, main, footer {
    width: 100%;
    padding: 20px;
}

section {
    padding: 40px 20px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Profesyonel Serif font */
    color: #004d99; /* Kurumsal Mavi */
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; border-bottom: 2px solid #e0e0e0; padding-bottom: 5px; }
h3 { font-size: 1.5em; color: #333333; }

/* =================================
   Blok 1: Teklif (Offer) - Minimum Yükseklik ve Kontrast
   ================================= */
#main-offer {
    background-color: #004d99; /* Koyu Kurumsal Mavi */
    color: #ffffff; /* Beyaz Metin (Yüksek Kontrast) */
    min-height: 470px; /* Minimum yükseklik */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

#main-offer h1, #main-offer p {
    color: #ffffff;
    max-width: 800px;
    margin-bottom: 20px;
}

/* Blok 1 Link-Butonu Stili */
.cta-button {
    display: inline-block;
    background-color: #ff9900; /* Parlak Vurgu Rengi (Güvenilir Sarısı/Turuncusu) */
    color: #004d99; /* Koyu Mavi Metin */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.1em;
    border: 2px solid #ff9900;
}

.cta-button:hover {
    background-color: #cc7a00; /* Koyu Turuncu hover */
    color: #ffffff;
    transform: translateY(-2px);
}

/* =================================
   Kontrastlı Blok Stilleri (Çevrimiçi Muhasebe Teması)
   ================================= */

/* Beyaz Arka Planlı Bloklar (Varsayılan) */
#reviews, #subscribe-form {
    background-color: #ffffff;
    border-left: 5px solid #004d99; /* Sol Kenarda Mavi Çizgi */
}

/* Hafif Gri Arka Planlı Bloklar (Kontrast için) */
#products-and-article, #specialists, #teaching-media {
    background-color: #f0f0f0; /* Açık Gri */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Blok 6 (Harita/İletişim) */
#contact-map {
    background-color: #e6f0ff; /* Çok Açık Mavi */
    border-top: 5px solid #004d99;
}

/* =================================
   Blok 3: Ürünler ve Makale Stili
   ================================= */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-item {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 15px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.product-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-item .price {
    color: #cc0000; /* Fiyatlar için kırmızı vurgu */
    font-size: 1.4em;
    font-weight: bold;
    margin-top: 10px;
}

/* Makale Vurgulama Stili */
.business-article {
    background-color: #f0f8ff; /* Açık Mavi (Muhasebe Defteri Sayfası Hissi) */
    padding: 30px;
    border-left: 5px solid #ff9900; /* Vurgu Çizgisi */
    border-radius: 5px;
    margin-top: 30px;
}

.business-article h2 {
    color: #004d99;
    border-bottom: none;
    margin-bottom: 20px;
}

.business-article p {
    margin-bottom: 15px;
}

/* =================================
   Blok 4: Uzmanlar Stili
   ================================= */
.specialist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.specialist-item {
    flex: 1 1 200px; /* Esnek genişlik */
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.specialist-item h3 {
    margin-bottom: 5px;
    color: #004d99;
}

.specialist-item p:first-of-type {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

/* =================================
   Blok 5: Yorumlar Stili
   ================================= */
.review-item {
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.review-item h3 {
    color: #004d99;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.review-item p:last-child {
    font-weight: bold;
    color: #ff9900;
    margin-top: 5px;
}

/* =================================
   Blok 2: Form Stili
   ================================= */
#subscribe-form {
    text-align: center;
    padding: 50px 20px;
}

#subscribe-form form {
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    display: block;
    text-align: left;
    font-weight: bold;
    color: #333333;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #004d99;
    outline: none;
}

/* Form Butonu Stili */
button[type="submit"] {
    background-color: #009933; /* Yeşil Ton (Başarı/Onay) */
    color: #ffffff;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #006622;
}

/* =================================
   Blok 6: Harita ve İletişim
   ================================= */
.map-container {
    margin-top: 20px;
    overflow: hidden;
    border: 3px solid #cccccc;
    border-radius: 8px;
}

/* =================================
   Blok 7: Footer (Copyright)
   ================================= */
footer {
    background-color: #333333; /* Koyu Gri/Siyahımsı */
    color: #cccccc;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9em;
}

footer .domainName {
    color: #ff9900;
    font-weight: bold;
}

/* =================================
   Mobil Görünüm (Responsive Design)
   ================================= */

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.7em; }

    section {
        padding: 30px 15px;
    }

    /* Blok 1: Teklif - Mobil için daha esnek yükseklik */
    #main-offer {
        min-height: 350px;
        padding: 40px 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    /* Blok 3: Ürünler - Tek Sütun Düzeni */
    .product-list {
        grid-template-columns: 1fr;
    }

    /* Blok 4: Uzmanlar - Tek Sütun Düzeni */
    .specialist-list {
        flex-direction: column;
        gap: 15px;
    }

    .specialist-item {
        flex: auto;
    }

    /* Blok 2: Form - Daha az boşluk */
    #subscribe-form form {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    body {
        /* Mobil cihazlarda kenar boşlukları olmadan tam ekran kullanımı */
        max-width: 100%;
    }
}
