/**
 * ISO 27001 Compliant Custom CSS
 * All inline styles moved to external file for CSP compliance
 */

/* Text Alignment Classes */
.text-center-custom {
    text-align: center !important;
}

.heading-center {
    text-align: center !important;
}

/* Column Background Colors */
.column-left {
    background-color: #FFB695 !important;
}

.column-middle {
    background-color: #96D1CD !important;
}

.column-right {
    background-color: #74C3E1 !important;
}

/* KVKK Specific Styles */
.kvkk-container {
    text-align: left;
    line-height: 1.8;
    color: #333;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.kvkk-title {
    color: #333 !important;
    font-weight: bold !important;
}

.kvkk-container h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid #8ec760;
    padding-left: 15px;
    font-size: 1.4rem;
}

.kvkk-container p {
    margin-bottom: 15px;
}

.data-responsible {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-box {
    margin-top: 10px;
    padding-left: 15px;
}

/* Service Section Styles */
.service-title-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Info Section Styles */
.info-iframe {
    border: 0 !important;
}

/* Responsive Design for Custom Columns */
@media (max-width: 768px) {
    .column-left,
    .column-middle,
    .column-right {
        margin-bottom: 15px;
    }
}

/* Beyde Brand Specific Styles */
.beyde-heading {
    text-align: center;
    font-weight: 600;
    color: var(--beyde-green, #007713);
}

.beyde-description {
    text-align: center;
    line-height: 1.6;
}

/* Animation Preserves */
.fade-in-service {
    animation: fadeIn 0.8s ease-out;
}

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

/* Detail Box Styles */
.detail-box {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    background: #f8f9fa;
}

.heading-container {
    margin-bottom: 15px;
}

/* Info Section Customizations */
.info_info {
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    margin: 10px 0;
}

/* Footer Section */
.footer-section {
    background: var(--beyde-green, #007713);
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Button Styles */
.btn-beyde {
    background: var(--beyde-green, #007713);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-beyde:hover {
    background: #005a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 19, 0.3);
}

/* Map Container Styles */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
