        :root {
            --navy: #1A1D29;
            --dark-navy: #0F1419;
            --medium-gray: #6C757D;
            --light-gray: #F8F9FA;
            --white: #FFFFFF;
            --black: #000000;
        }

        body {
            font-family: 'Playfair Display', serif;
            background-color: var(--light-gray);
            color: var(--black);
        }

        .bg-navy { background-color: var(--navy) !important; }
        .bg-dark-navy { background-color: var(--dark-navy) !important; }
        .bg-light-gray { background-color: var(--light-gray) !important; }

        .text-navy { color: var(--navy) !important; }
        .text-dark-navy { color: var(--dark-navy) !important; }
        .text-medium-gray { color: var(--medium-gray) !important; }
        .text-white { color: var(--white) !important; }

        .font-playfair { font-family: 'Playfair Display', serif !important; }
        .font-source { font-family: 'Source Serif Pro', serif !important; }

        .rounded-full { border-radius: 9999px !important; }
        .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }

        .navbar {
            background-color: #fff;
            border-bottom: 1px solid #eaeaea;
            height: auto;
            padding: 0.5rem 1rem;
        }

        /* Responsive layout fix */
        @media (min-width: 992px) {
            .navbar .container {
                display: flex;
                align-items: center;
                height: 84px;
            }
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.2rem;
            color: #1A1D29 !important;
        }

        .nav-link {
            font-family: 'Source Serif Pro', serif;
            color: #6C757D !important;
            font-size: 1.1rem;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #000 !important;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .btn-primary {
            background-color: #1A1D29;
            border-color: #1A1D29;
        }

        .btn-primary:hover {
            background-color: #16181f;
            border-color: #16181f;
        }

        .btn-outline-primary {
            color: #1A1D29;
            border-color: #1A1D29;
        }

        .btn-outline-primary:hover {
            background-color: rgba(26, 29, 41, 0.1);
            color: #1A1D29;
            border-color: #1A1D29;
        }

        footer a:hover {
            color: white !important;
        }

        .rounded-circle {
            border-radius: 50% !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 150px;
            height: 150px;
        }