﻿/* Genel sayfa düzeni */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Başlıklar */
h1, h2, h5 {
    font-weight: 700;
}

/* Hero alanı */
main .display-4 {
    color: #0d6efd;
}

main .lead {
    font-size: 1.25rem;
    color: #495057;
}

/* Kartlar */
.card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

.card-title {
    font-size: 1.25rem;
    color: #0d6efd;
}

.card-text {
    font-size: 1rem;
    color: #343a40;
}

/* Avantaj kutuları */
.bg-light {
    background-color: #ffffff !important;
    border-left: 5px solid #0d6efd;
}

/* CTA Buton */
.btn-success {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }
}
