/* Ana stil ayarları */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    max-width: 1090px;
    margin: 0 auto;
    position: relative;
}

/* Bloklar için genel kontrastlı arka planlar - havacılık teması: mavi gökyüzü, metalik gri */
.efsan-kutusu {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    padding: 60px 40px;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.selım-yorum-kutusu {
    background-color: #e8f4fd;
    color: #2c5364;
    padding: 60px 40px;
    border-bottom: 1px solid #b8d8eb;
}

.form-alanı {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.kerem-uzman-kutusu {
    background-color: #fff;
    color: #333;
    padding: 60px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.narın-urun-alanı {
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 40px;
    border-top: 1px solid #dee2e6;
}

.sude-etkinlik-kutusu {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    padding: 60px 40px;
    text-align: center;
}

.burak-adres-alanı {
    background-color: #fff;
    color: #333;
    padding: 60px 40px;
    text-align: center;
}

.cansu-telif-kutusu {
    background-color: #2c5364;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}

/* Başlık stilleri */
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-top: 0;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid currentColor;
    padding-bottom: 10px;
    display: inline-block;
}

/* İlk blok butonu - havacılık temalı: metalik mavi, hover efekti */
.tuy-kilidi-buton {
    display: inline-block;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    margin-top: 20px;
}

.tuy-kilidi-buton:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
    background: linear-gradient(45deg, #00f2fe 0%, #4facfe 100%);
}

/* Form stilleri */
.form-alanı form {
    max-width: 500px;
    margin: 0 auto;
}

.form-alanı input[type="email"] {
    width: 70%;
    padding: 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1em;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-alanı button {
    padding: 15px 30px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-alanı button:hover {
    background: #f0f0f0;
    color: #764ba2;
}

/* Ürün listesi */
.fiyat-listesi {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 40px;
}

.fiyat-listesi li {
    background: #fff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    border-left: 5px solid #4facfe;
}

/* Makale vurgusu - havacılık temalı kutu */
article {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border-top: 4px solid #4facfe;
}

article h2 {
    color: #2c5364;
    font-size: 1.8em;
}

article p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Uzman kartları */
.uzman-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.uzman-kart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.uzman-kart:hover {
    transform: scale(1.05);
}

/* Yorumlar */
.yorum-listesi {
    max-width: 800px;
    margin: 0 auto;
}

.yorum-listesi blockquote {
    background: #fff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #4facfe;
    font-style: italic;
    position: relative;
}

.yorum-listesi blockquote::before {
    content: '"';
    font-size: 4em;
    color: #4facfe;
    position: absolute;
    left: 10px;
    top: 5px;
    opacity: 0.3;
}

.yorum-listesi cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: #666;
    margin-top: 10px;
    font-weight: bold;
}

/* Harita iframe */
iframe {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Telif */
.cansu-telif-kutusu p {
    margin: 0;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    body {
        padding: 0 20px;
    }

    .efsan-kutusu,
    .selım-yorum-kutusu,
    .form-alanı,
    .kerem-uzman-kutusu,
    .narın-urun-alanı,
    .sude-etkinlik-kutusu,
    .burak-adres-alanı {
        padding: 40px 20px;
    }

    .efsan-kutusu {
        min-height: 470px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .form-alanı input[type="email"] {
        width: 60%;
        margin-bottom: 10px;
        border-radius: 50px;
    }

    .form-alanı button {
        width: 100%;
        border-radius: 50px;
        margin-top: 10px;
    }

    .uzman-listesi {
        grid-template-columns: 1fr;
    }

    .fiyat-listesi li {
        padding: 20px 15px;
    }

    article {
        padding: 20px;
    }

    .yorum-listesi blockquote {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    .tuy-kilidi-buton {
        padding: 12px 30px;
        font-size: 0.9em;
    }
}
