﻿
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Sayfa başlığı */
.page-title {
    font-family: 'Merriweather', serif;
    color: #0033A1;
    font-weight: 700;
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

/* Üst görsel */
.page-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    animation: fadeIn 1s ease;
}

/* İçerik alanı */
.page-content-area {
    padding: 40px 20px;
}

/* İçerik kutusu */
.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

    .content-box:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    /* İçerik başlıkları */
    .content-box h2,
    .content-box h3 {
        color: #0033A1;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 600;
    }

/* Alt call-to-action */
.calltoaction {
    background: linear-gradient(135deg, #001F54, #007BFF);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

    .calltoaction h4 {
        margin: 0;
        font-size: 24px;
        font-weight: 600;
    }

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .content-box {
        padding: 20px;
    }

    .calltoaction {
        text-align: center;
    }

        .calltoaction img {
            margin-top: 20px;
        }
}


