/* Temel Sayfa Stilleri */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    background-color: #f8f9fa;
    color: #212529;
}

/* Ana İçerik Konteyneri */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Başlık Alanı */
header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 1.8em;
    color: #343a40;
}

h2 {
    font-size: 1.4em;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    margin-top: 30px;
}

/* Paragraflar ve Listeler */
p, ul {
    font-size: 1em;
    color: #495057;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Güçlü Metin */
strong {
    color: #000;
}

/* Altbilgi (Footer) */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    text-align: center;
    font-size: 0.9em;
    color: #6c757d;
}

/* Mevcut CSS kodlarınızın altına bu kısmı ekleyiniz */

/* Form Stilleri */
#consent-form-section {
    margin-top: 40px;
    padding: 30px;
    background-color: #fdfdff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

#consent-form-section h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* padding'in genişliği etkilememesi için */
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    width: 1.2em;
    height: 1.2em;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

button[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* Mesaj Stilleri */
.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}