body.kurumsal-page {
    padding-top: 88px;
}

.kurumsal-page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5% 3rem;
    width: 100%;
    box-sizing: border-box;
}

.kurumsal-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #7a6250;
    margin-bottom: 1rem;
}

.kurumsal-breadcrumb a {
    color: #ff6b00;
    text-decoration: none;
}

.kurumsal-breadcrumb .current {
    color: #2c2c2c;
    font-weight: 600;
}

.kurumsal-hero {
    background: linear-gradient(135deg, #fff7f0 0%, #ffffff 55%, #fff4ea 100%);
    border: 1px solid #f3dfd0;
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 28px rgba(255, 107, 0, 0.08);
}

.kurumsal-hero-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 0.75rem;
    border-radius: 16px;
    background: #ff6b00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px rgba(255, 107, 0, 0.28);
}

.kurumsal-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #222;
    margin-bottom: 0.45rem;
}

.kurumsal-hero p {
    color: #6f5b4d;
    font-size: 0.95rem;
    max-width: 720px;
    margin: 0 auto;
}

.kurumsal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.kurumsal-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.kurumsal-sidebar h2 {
    font-size: 0.95rem;
    color: #ff6b00;
    margin-bottom: 0.75rem;
}

.kurumsal-menu {
    display: grid;
    gap: 0.35rem;
}

.kurumsal-menu-link {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.kurumsal-menu-link:hover,
.kurumsal-menu-link.active {
    background: #fff4ea;
    color: #ff6b00;
}

.kurumsal-content-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.kurumsal-content-body {
    color: #444;
    line-height: 1.75;
    font-size: 0.94rem;
}

.kurumsal-content-body h2 {
    font-size: 1.05rem;
    color: #222;
    margin: 1.25rem 0 0.65rem;
}

.kurumsal-content-body h2:first-child {
    margin-top: 0;
}

.kurumsal-content-body p {
    margin-bottom: 0.85rem;
}

.kurumsal-content-body ul {
    margin: 0 0 1rem 1.1rem;
}

.kurumsal-content-body li {
    margin-bottom: 0.45rem;
}

.kurumsal-content-body a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 600;
}

.kurumsal-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.kurumsal-highlight-card {
    background: #fff8f2;
    border: 1px solid #f3dfd0;
    border-radius: 14px;
    padding: 1rem;
}

.kurumsal-highlight-card h2 {
    margin-top: 0;
    font-size: 1rem;
    color: #ff6b00;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

@media (max-width: 992px) {
    body.kurumsal-page {
        padding-top: 132px;
    }

    .kurumsal-layout {
        grid-template-columns: 1fr;
    }

    .kurumsal-sidebar {
        position: static;
    }

    .kurumsal-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .kurumsal-page-main {
        padding-left: 3%;
        padding-right: 3%;
    }

    .kurumsal-menu {
        grid-template-columns: 1fr;
    }

    .kurumsal-highlight-grid {
        grid-template-columns: 1fr;
    }
}
