/* Kurumsal Page Styles - 3E Makina */

.kurumsal-container {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
}

.kurumsal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.kurumsal-header {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.kurumsal-header h1 {
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.kurumsal-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 900px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Content Area */
.content-area {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-section {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.content-section.active {
    display: block;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.content-section h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
}

.content-section ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 1024px) {
    .kurumsal-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .content-area {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .kurumsal-container {
        padding-top: 80px;
    }
    
    .kurumsal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        position: static;
        padding: 20px;
    }
    
    .content-area {
        padding: 30px 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
}

