/* Statik Sayfalar (HakkÄ±mÄ±zda, Ä°letiÅŸim, KVKK) */

/* Sayfa BaÅŸlÄ±ÄŸÄ± */
.page-content {
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ä°Ã§erik KartlarÄ± */
.content-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.content-card h2,
.content-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Grid YapÄ±sÄ± (Ã–zellikler) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-color: #e2e8f0;
}

.feature-title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.feature-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Liste Stilleri */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.styled-list li::before {
    content: "â€¢";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.styled-list li strong {
    color: #1e293b;
}

/* Ä°letiÅŸim SayfasÄ± */
.contact-hero {
    text-align: center;
    padding: 2rem 0;
}

.contact-email {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.2s;
}

.contact-email:hover {
    background: #2563eb;
    color: #fff;
    transform: scale(1.05);
}

/* KVKK Ã–zel */
.consent-management {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.consent-management h4 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.consent-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-revoke {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-revoke:hover {
    background-color: #b91c1c;
}

.btn-refresh {
    background-color: #475569;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-refresh:hover {
    background-color: #334155;
}

.consent-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Ýletiþim Grid */
.contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.btn-block {
    text-decoration: none;
    width: 100%;
    justify-content: center;
    display: inline-flex;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Statik Sayfalar */
.contact-form-group { margin-bottom: 1.25rem; }
.contact-form-label { display: block; margin-bottom: 0.5rem; color: #1e293b; font-weight: 600; font-size: 0.95rem; }
.contact-form-input, .contact-form-textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #e2e8f0; border-radius: 6px; font-family: inherit; font-size: 1rem; color: #334155; transition: border-color 0.2s, box-shadow 0.2s; background: #fff; }
.contact-form-input:focus, .contact-form-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.contact-form-textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.btn-submit { background-color: #2563eb; color: white; border: none; padding: 0.875rem 2rem; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.2s; width: 100%; }
.btn-submit:hover { background-color: #1d4ed8; transform: translateY(-1px); }
