﻿/* Genel stil ayarları */
body .sections {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    color: black;
    text-align: center;
}

    header h1, footer h1 {
        margin: 0;
    }

/* Container ayarları */
.sections {
    max-width: 1200px;
}

/* Başlık ve metin ayarları */
h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c40433;
}

.card-body p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Card stili */
.card {
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Responsive ayarları */
@media (max-width: 768px) {
    .sections {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
