.corporate-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.corporate-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.corporate-card:hover {
    transform: translateY(-5px);
}

.corporate-card h3 {
    color: #3f5df2;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.corporate-card p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 3rem;
}

.nav-tabs .nav-link {
    background: none;
    border: none;
    color: #6c757d;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #3f5df2;
}

.nav-tabs .nav-link.active {
    color: #3f5df2;
    background: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3f5df2;
    border-radius: 2px;
}

.custom-badge {
    display: inline-block;
    background-color: #e8ecfd;
    color: #3f5df2;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0.5rem;
}

.custom-badge.denizli {
    background-color: #e8ecfd;
    color: #3f5df2;
}

.custom-badge:hover {
    background-color: #3f5df2;
    color: #ffffff;
}

.tab-pane {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .corporate-card {
        padding: 1.5rem;
    }

    .corporate-card h3 {
        font-size: 1.5rem;
    }

    .custom-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}