        /* TEMEL STİLLER */
        html,
        body {
            height: 100%;
            margin: 0;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            color: #e0ddd0;
        }

        /* HEADER & NAVBAR */
        .top-ribbon {
            font-size: 0.95rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1040;
            background-color: #343a40;
            color: white;
            padding: 8px 0;
            line-height: 1.2;
        }

        .navbar {
            position: fixed;
            top: 12px;
            width: 100%;
            background-color: #948a76 !important;
            padding: 0.5rem 0;
            margin: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 1030;
        }

        /* İkonları ve logo'yu düzgün hizala */
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* İletişim ikonlarını sağa yasla */
        .navbar .d-flex.align-items-center:last-child {
            margin-left: auto;
        }

        /* SIDEBAR & MAIN CONTENT */
        .content-wrapper {
            display: flex;
            flex-direction: column;
            min-height: calc(100vh - 138px);
            margin-top: 138px;
        }

        @media (min-width: 992px) {
            .content-wrapper {
                flex-direction: row;
            }

            .sidebar {
                position: sticky;
                top: 138px;
                width: 25%;
                height: calc(100vh - 138px);
                overflow-y: auto;
            }

            .main-content {
                width: 75%;
                padding-left: 20px;
            }

            .navbar-expand-lg .navbar-nav {
                white-space: nowrap;
            }

            .navbar-expand-lg .nav-item {
                margin-right: 1rem;
            }
        }



        .sidebar {
            background-color: #edeeef;
            color: #160f0f;
            padding: 20px;
            order: 1;
        }

        .main-content {
            background-color: #dadada;
            color: #160f0f;
            padding: 20px;
            flex-grow: 1;
            order: 2;
        }

        /* FOOTER */
        footer {
            background-color: #c9cbce;
            color: rgb(22, 15, 15);
            padding: 20px;
            width: 100%;
        }

        /* ÖZEL STİLLER */
        .background-container {
            position: relative;
            width: 100%;
            height: 160px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            z-index: 1;
        }

        .background-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/themis.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
        }

        .cta-buttons a {
            text-decoration: none;
            color: #88001b;
            background-color: rgb(223, 224, 224);
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            margin: 5px;
            flex: 1 1 auto;
            min-width: 120px;
            max-width: 220px;
            text-align: center;
            height: auto;
            padding: 10px 20px;
        }

        .profile-img {
            max-width: 200px;
            height: auto;
            margin: 0 auto;
            display: block;
        }

        .team-member-img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }


        .team-member {
            background-color: #c7c7c6;
            border-radius: 10px;
            padding: 20px;
            border-style: groove;
            border-color: #88001b;
        }

        .flex-title {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #d4f0be;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        /* Dropdown arka plan rengi */
        .dropdown-menu {
            background-color: #d4ccbd;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .dropdown-item {

            border-bottom: 1px solid #6a6455;
            border-radius: 10px;
        }

        .title-line {
            text-align: center;
        }

        .indicator {
            display: none;
            position: fixed;
            top: 40px;
            right: 20px;
            font-size: 40px;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.5;
            }
        }

        /* Responsive adjustments */
        @media only screen and (max-width: 991.98px) {
            .navbar {
                top: 110px !important;
                /* ribbon yüksekliği kadar aşağı indir */
                padding: 0.5rem 1rem !important;
            }

            .indicator {
                display: block;
                /* Sadece mobilde göster */
            }

            .navbar-brand h1 {
                font-size: 1.2rem;
            }

            .navbar-brand img {
                width: 55px;
                height: auto;
            }

            .navbar-collapse {
                background-color: #948a76;
                margin-top: 0.5rem;
                padding: 1rem;
                border-radius: 10px;
            }
            /* İLETİŞİM İKONLARI */
    .navbar .d-flex.align-items-center.pe-3 {
        display: none !important;
    }

            .content-wrapper {
                margin-top: 230px;
                /* Navbar'dan biraz daha fazla boşluk bırakıyoruz */
            }

            .top-ribbon {
                font-size: 0.78rem;
                padding: 8px 10px;
            }


            .top-ribbon .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 6px;
            }

            .sidebar {
                order: 1;
            }

            .main-content {
                order: 2;
            }
        }