/* KVKK Page Styles */
.kvkk-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    font-family: 'Gilroy-Regular', 'Gilroy', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Tab Navigation */
.kvkk-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    border-bottom: 3px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.kvkk-tab-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(145deg, #f5f7fa, #e9ecef);
    color: #495057;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.kvkk-tab-button:hover {
    background: linear-gradient(145deg, #e9ecef, #dee2e6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.kvkk-tab-button.active {
    background: linear-gradient(145deg, #004a99, #003d80);
    color: white;
    box-shadow: 0 4px 15px rgba(0,74,153,0.3);
}
.corpo-content-wrapper{
    max-width: unset !important;
}

.kvkk-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: #004a99;
    border-radius: 3px;
}

/* Tab Content */
.kvkk-tab-content {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.kvkk-tab-content.active {
    display: block;
}

/* Section Styling */
.kvkk-section {
    padding: 2.5rem;
}

.kvkk-section h2 {
    color: #004a99;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #e9ecef;
    position: relative;
}

.kvkk-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #004a99, #0066cc);
}

.kvkk-section h3 {
    color: #005cb8;
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

/* Highlight Boxes */
.kvkk-highlight {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-left: 5px solid #004a99;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.kvkk-highlight h3 {
    margin-top: 0;
    color: #004a99;
    font-size: 1.4rem;
}

/* Contact Information */
.kvkk-contact {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.kvkk-contact p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Lists */
.kvkk-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.kvkk-section ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.kvkk-section ul li::before {
    content: "•";
    color: #004a99;
    font-weight: bold;
    position: absolute;
    left: 0;
    transform: scale(1.5);
}

/* Links */
.kvkk-section a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    background-color: rgba(0,102,204,0.1);
}

.kvkk-section a:hover {
    color: #004a99;
    background-color: rgba(0,102,204,0.15);
    text-decoration: none;
}

/* Paragraphs */
.kvkk-section p {
    margin: 1.25rem 0;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .kvkk-container {
        margin: 2rem;
    }
}

@media (max-width: 992px) {
    .kvkk-container {
        margin: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .kvkk-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .kvkk-container {
        margin: 1rem;
        padding: 0 1rem;
    }

    .kvkk-tab-list {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        position: relative;
    }

    .kvkk-tab-button {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
    }

    .kvkk-section {
        padding: 1.5rem;
    }

    .kvkk-section h2 {
        font-size: 1.75rem;
    }

    .kvkk-section h3 {
        font-size: 1.35rem;
    }

    .kvkk-highlight,
    .kvkk-contact {
        padding: 1.5rem;
    }

    .kvkk-section p,
    .kvkk-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kvkk-container {
        margin: 0.5rem;
        padding: 0 0.5rem;
    }

    .kvkk-section {
        padding: 1.25rem;
    }

    .kvkk-section h2 {
        font-size: 1.5rem;
    }

    .kvkk-section h3 {
        font-size: 1.25rem;
    }

    .kvkk-highlight,
    .kvkk-contact {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .kvkk-container {
        margin: 0;
        padding: 0;
        max-width: 100%;
        box-shadow: none;
    }

    .kvkk-tab-list {
        display: none;
    }

    .kvkk-tab-content {
        display: block !important;
        margin-bottom: 2rem;
        page-break-inside: avoid;
    }

    .kvkk-section {
        padding: 0;
    }
}
