/* Genel Stil Ayarları */
:root {
    --primary-color: #6A0572; /* Canlı Mor */
    --secondary-color: #f0f8ff; /* Çok Açık Mavi/Beyaz - Arka plan için */
    --accent-color: #FFD700; /* Parlak Altın Sarısı - Vurgular için */
    --text-color: #333;
    --light-grey: #f8f8f8;
    --white: #ffffff;
    --dark-grey: #444; /* Daha koyu metin için */
    --calm-blue: #4682B4; /* Çelik Mavi - H3 başlıkları için */
    --soft-green: #6B8E23; /* Zeytin Yeşili - Liste maddeleri için */
}

body {
    font-family: 'Poppins', sans-serif; /* Poppins fontu geri geldi */
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.75; /* Satır aralığı biraz artırıldı */
    font-size: 16px;
    -webkit-font-smoothing: antialiased; /* Font yumuşatma */
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Başlık Alanı (Header) */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8A2BE2 100%); /* Mor ve Mor-Mavi degrade */
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
    position: relative;
    overflow: hidden; /* Degradenin dışarı taşmasını engeller */
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1%, transparent 1%) repeat; /* Hafif desen */
    background-size: 20px 20px;
    transform: rotate(45deg);
    opacity: 0.1;
    pointer-events: none;
}


header h1 {
    margin: 0;
    font-size: 3.5em; /* Başlık boyutu biraz büyütüldü */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3); /* Daha belirgin metin gölgesi */
}

header p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-top: 15px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Kahraman Alanı (Hero Section) */
.hero {
    background-color: var(--secondary-color); /* Açık renkli arka plan */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h2 {
    color: var(--primary-color);
    font-size: 3em; /* Başlık boyutu biraz büyütüldü */
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.hero p {
    max-width: 800px; /* Paragraf genişliği ayarlandı */
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--dark-grey);
}

.hero img {
    max-width: 95%; /* Resim genişliği ayarlandı */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Daha yumuşak gölge */
    border: 3px solid var(--accent-color); /* Vurgulu kenarlık */
}

/* İçerik Bölümleri */
.content-section {
    padding: 80px 0;
}

.content-section.grey-bg {
    background-color: var(--light-grey);
}

.content-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 3em; /* Başlık boyutu biraz büyütüldü */
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

.section-intro {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 40px;
    color: var(--dark-grey);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Kart min genişliği ayarlandı */
    gap: 30px; /* Kart aralığı ayarlandı */
}

.card {
    background-color: var(--white);
    border-radius: 12px; /* Köşe yuvarlaklığı ayarlandı */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
    padding: 25px; /* Kart iç dolgusu ayarlandı */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--accent-color); /* Sol kenarda vurgu çizgisi */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: var(--calm-blue); /* Yeni renk */
    font-size: 1.8em; /* Kart başlık boyutu ayarlandı */
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.card h4 {
    color: var(--soft-green); /* Yeni renk */
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.card p {
    font-size: 1em; /* Kart paragraf boyutu ayarlandı */
    margin-bottom: 12px;
    color: var(--dark-grey);
    line-height: 1.7;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.card ul li {
    background: var(--light-grey); /* Liste maddeleri için açık gri arka plan */
    color: var(--text-color);
    margin-bottom: 6px;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 500;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--soft-green); /* Liste maddelerinde yeşil çizgi */
}

.card ul li strong {
    color: var(--primary-color); /* Strong etiketleri için primary renk */
}

.card img {
    max-width: 100%;
    height: 180px; /* Kart resim yüksekliği ayarlandı */
    object-fit: cover;
    border-radius: 10px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ad-banner {
    background-color: var(--accent-color);
    text-align: center;
    padding: 28px;
    margin-top: 50px;
    border-radius: 12px;
    font-size: 1.6em; /* Banner font boyutu ayarlandı */
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    border: 2px dashed var(--primary-color); /* Kesikli kenarlık */
}

.ad-banner a {
    color: var(--primary-color); /* Link rengi mor */
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.ad-banner a:hover {
    color: var(--dark-grey);
    text-decoration: underline;
}

/* CTA Bölümü (Sonuç) */
.cta-section {
    background: linear-gradient(135deg, #78909C 0%, #546E7A 100%); /* Gri tonlarında degrade */
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2); /* İç gölge */
}

.cta-section h2 {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.cta-section h2::after {
    background-color: var(--accent-color);
}

.cta-section p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Altbilgi (Footer) */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
    font-size: 0.95em;
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.15);
}

/* Mobil Duyarlılık */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.8em;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .content-section h2 {
        font-size: 2.8em;
    }

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

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 1.6em;
    }

    .card img {
        height: 160px;
    }

    .cta-section h2 {
        font-size: 2.8em;
    }

    .cta-section p {
        font-size: 1.2em;
    }

    .ad-banner {
        font-size: 1.3em;
        padding: 20px;
    }
}

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

    header p {
        font-size: 1em;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .content-section h2 {
        font-size: 2.2em;
    }

    .card h3 {
        font-size: 1.4em;
    }

    .card p {
        font-size: 0.9em;
    }

    .card ul li {
        padding: 7px 12px;
        font-size: 0.8em;
    }

    .card img {
        height: 130px;
    }

    .cta-section h2 {
        font-size: 2.2em;
    }

    .cta-section p {
        font-size: 1em;
    }

    .ad-banner {
        font-size: 1.1em;
        padding: 15px;
    }
}

/* Font Yüklemesi (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');