        body {
            font-family: 'Raleway', serif;
            color: #2b1e16;
            background: linear-gradient(135deg, #fffaf0, #f0e4d7);
            line-height: 1.6;
        }

.raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
        /* Header */
        header {
            background: #fffaf0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        header .contact-info a {
            color: #2b1e16;
            text-decoration: none;
            font-size: 0.9rem;
            margin-right: 15px;
        }
        header .contact-info i {
            color: #b89778;
            margin-right: 5px;
        }
        header .navbar-brand img {
            height: 25px;
        }
        header .navbar-nav {
            gap: 10px;
        }
        header .nav-link {
            color: #2b1e16;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        header .nav-link:hover {
            color: #b89778;
        }
        header .navbar-toggler {
            border: none;
            font-size: 1.2rem;
            color: #b89778;
            padding: 8px;
        }
        header .navbar-toggler:focus {
            outline: none;
            box-shadow: none;
        }
        header .navbar-toggler i {
            color: #b89778;
        }
        @media (max-width: 768px) {
            header .contact-info a:not([href^="tel"]) {
                display: none;
            }
            header .contact-info a[href^="tel"] span {
                display: none;
            }
            header .navbar-toggler {
                display: block;
            }
        }
        /* Hero Section */
        .hero-section {
            min-height: 550px;
            display: flex;
            margin-top: 60px;
        }
        .hero-left {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../images/safari/lion-4.jpg') center/cover no-repeat;
            padding: 30px;
        }
        .hero-left h1 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #f4d35e;
            text-align: center;
            text-shadow: 0 2px 6px rgba(0,0,0,0.7);
            margin: 0;
        }
        .hero-left p {
            font-size: 1.2rem;
            color: #fffaf0;
            max-width: 600px;
            text-align: center;
        }
        .hero-right {
            flex: 1;
            padding: 30px;
            background: #fffaf0;
        }
        .hero-right p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin: 0 0 12px;
        }
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                min-height: 400px;
            }
            .hero-left {
                order: 1;
                min-height: 300px;
            }
            .hero-right {
                order: 2;
            }
            .hero-left h1 {
                font-size: 1.5rem;
            }
        }
        /* Floating Navigation */
        .nav-menu {
            background: rgba(255,250,240,0.95);
            padding: 15px;
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 1px solid #b89778;
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .nav-menu.visible {
            opacity: 1;
            visibility: visible;
        }
        .nav-menu a {
            display: block;
            color: #2b1e16;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            padding: 8px 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .nav-menu a:hover {
            color: #f4d35e;
            background: rgba(184,151,120,0.2);
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                font-size: 0.3rem;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                background: rgba(255,250,240,0.95);
                padding: 1px;
                border-radius: 0;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
                border-bottom: 1px solid #b89778;
                z-index: 900;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }
            .nav-menu.visible {
                opacity: 1;
                visibility: visible;
            }
            .nav-menu a {
                margin: 5px 10px;
                font-size: 0.85rem;
                padding: 5px 10px;
            }
        }
        /* General Section Styling */
        section {
            padding: 80px 0 60px; /* Increased top padding to account for header (60px) + 5px buffer */
            scroll-margin-top: 80px; /* Offset for anchor links to clear header and nav */
        }
        h2{
            font-family: 'Cinzel', serif; color: #2b1e16;
        }
        .section-title h2,h3 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: #b89778;
            text-align: center;
            margin-bottom: 10px;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #2b1e16;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        /* Tour Cards for Recommended Section */
        .tour-card {
            background: #fffaf0;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            position: relative;
            margin: 10px 15px;
            min-height: 200px;
        }
        .tour-card:hover {
            transform: translateY(-8px);
        }
        .tour-card img {
            width: 40%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px 0 0 15px;
        }
        .tour-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .tour-card-body h5 {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: #2b1e16;
            margin-bottom: 10px;
        }
        .tour-card-body p {
            font-size: 0.95rem;
            color: #2b1e16;
            margin-bottom: 8px;
        }
        .tour-card-body ul {
            font-size: 0.9rem;
            color: #2b1e16;
            margin-bottom: 10px;
            padding-left: 20px;
        }
        .tour-card-price {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #b89778;
            color: #fffaf0;
            padding: 5px 10px;
            border-radius: 10px;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            font-weight: 700;
        }
        .read-more, .view-btn {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 20px;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        .view-btn {
            border: 1px solid #b89778;
        }
        .read-more:hover, .view-btn:hover {
            background: rgba(184,151,120,0.2);
            color: #f4d35e;
        }
        /* Tabs Styling */
        .tour-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        .tour-tab {
            background: #fffaf0;
            color: #2b1e16;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #b89778;
        }
        .tour-tab.active {
            background: #b89778;
            color: #fffaf0;
        }
        .tour-tab:hover {
            background: #f4d35e;
            color: #2b1e16;
        }
        .tour-content {
            display: none;
        }
        .tour-content.active {
            display: block;
        }
        .view-more {
            display: block;
            text-align: center;
            margin-top: 20px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            color: #b89778;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .view-more:hover {
            color: #f4d35e;
        }
         .package-card-vertical:hover {
        transform: translateY(-12px) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
    }
    .package-card-vertical:hover img {
        transform: scale(1.1) !important;
    }
    .package-card-vertical:hover .package-hover-effect {
        opacity: 1 !important;
    }
    .package-card-vertical .package-overlay {
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    .package-card-vertical:hover .package-overlay {
        opacity: 1;
    }

    /* Parallax Background */
    .parallax-bg {
        transform: translate3d(0, 0, 0);
        will-change: transform;
        background-attachment: fixed; /* Fallback for browsers that don't support JS parallax */
    }

    /* Parallax Image in Cards */
    .parallax-img {
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .package-card-vertical {
            height: auto !important;
        }
        .package-img-wrapper {
            height: auto !important;
        }
        .package-body {
            padding: 15px !important;
        }
        .package-body h5 {
            font-size: 1.3rem !important;
        }
        .package-body p {
            font-size: 0.85rem !important;
        }
        .package-body ul {
            font-size: 0.8rem !important;
        }
        .package-badge {
            font-size: 0.75rem !important;
            padding: 4px 8px !important;
        }
        /* Disable parallax on mobile for performance */
        .parallax-bg {
            background-attachment: scroll !important;
        }
        .parallax-img {
            transform: none !important;
        }
    }
        @media (max-width: 768px) {
            .tour-card {
                flex-direction: column;
                align-items: flex-start;
                margin: 10px 10px;
            }
            .tour-card img {
                width: 100%;
                height: 150px;
                border-radius: 15px 15px 0 0;
            }
            .tour-card-price {
                top: 5px;
                right: 5px;
                font-size: 0.8rem;
            }
        }
        /* More Packages Section - Redesigned with Vertical Cards */
        .more-packages {
            background: linear-gradient(180deg, #fffaf0 0%, #f0e4d7 100%);
            padding: 80px 0 60px; /* Adjusted top padding for header + buffer */
            position: relative;
            overflow: hidden;
            height: auto;
        }
        .more-packages .section-title h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            color: #f4d35e;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }
        .more-packages .section-title p {
            color: #2b1e16;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 20px auto;
        }
        .package-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 500px;
            width: 100%;
            max-width: 350px;
            margin: 15px auto;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: #fffaf0;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        .package-card img {
            width: 100%;
            height: 60%;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            transition: transform 0.5s ease;
        }
        .package-card:hover img {
            transform: scale(1.1);
        }
        .package-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(43,30,22,0.1), rgba(43,30,22,0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: #fffaf0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .package-card:hover .package-overlay {
            opacity: 1;
        }
        .package-overlay h5 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #f4d35e;
            margin-bottom: 10px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        .package-overlay p {
            font-size: 0.9rem;
            margin-bottom: 8px;
            opacity: 0;
            transition: opacity 0.4s ease 0.2s;
        }
        .package-card:hover .package-overlay p {
            opacity: 1;
        }
        .package-overlay .package-price {
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            color: #b89778;
            background: rgba(255,250,240,0.9);
            padding: 5px 12px;
            border-radius: 15px;
            position: absolute;
            top: 15px;
            right: 15px;
        }
        .package-overlay a {
            color: #fffaf0;
            background: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            align-self: flex-start;
            opacity: 0;
            transition: opacity 0.4s ease 0.3s;
        }
        .package-card:hover .package-overlay a {
            opacity: 1;
        }
        .package-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
        }
        .package-content {
            padding: 15px;
            text-align: left;
            background: #fffaf0;
        }
        .package-content p {
            font-size: 0.85rem;
            color: #2b1e16;
            margin-bottom: 5px;
        }
        .package-content ul {
            font-size: 0.8rem;
            color: #2b1e16;
            padding-left: 15px;
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .package-card {
                height: 450px;
                max-width: 100%;
            }
            .package-card img {
                height: 50%;
            }
            .package-overlay {
                opacity: 0.8;
            }
            .package-overlay h5 {
                font-size: 1.4rem;
            }
            .package-overlay p {
                font-size: 0.8rem;
                opacity: 1;
            }
            .package-overlay a {
                font-size: 0.8rem;
                padding: 6px 12px;
                opacity: 1;
            }
            .package-content p {
                font-size: 0.8rem;
            }
            .package-content ul {
                font-size: 0.75rem;
            }
        }
        /* Destinations Section - 8 Cards with Hover Effects */
        .destination-card {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            height: 320px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            margin-bottom: 25px;
        }
        .destination-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .destination-card:hover img {
            transform: scale(1.15);
        }
        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(43,30,22,0.92), transparent);
            padding: 25px;
            color: #fffaf0;
            transform: translateY(60%);
            transition: transform 0.4s ease;
        }
        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }
        .destination-overlay h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.7rem;
            margin-bottom: 8px;
            color: #f4d35e;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        .destination-overlay p {
            font-size: 0.95rem;
            margin-bottom: 12px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .destination-card:hover .destination-overlay p {
            opacity: 1;
        }
        .destination-overlay a {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 6px 14px;
            border: 1.5px solid #b89778;
            border-radius: 25px;
            transition: all 0.3s ease;
            opacity: 0;
        }
        .destination-card:hover .destination-overlay a {
            opacity: 1;
        }
        .destination-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
            border-color: #f4d35e;
        }
        @media (max-width: 768px) {
            .destination-card {
                height: 260px;
            }
            .destination-overlay {
                transform: translateY(0);
                padding: 18px;
            }
            .destination-overlay h4 {
                font-size: 1.3rem;
            }
            .destination-overlay p {
                font-size: 0.85rem;
                opacity: 1;
            }
            .destination-overlay a {
                opacity: 1;
                font-size: 0.8rem;
                padding: 5px 12px;
            }
        }
        /* Luxury Accommodations - Creative Grid */
        .accommodation-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 380px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-bottom: 30px;
        }
        .accommodation-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }
        .accommodation-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .accommodation-card:hover img {
            transform: scale(1.12);
        }
        .accommodation-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(43,30,22,0.85), rgba(184,151,120,0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: #fffaf0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .accommodation-card:hover .accommodation-overlay {
            opacity: 1;
        }
        .accommodation-overlay h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #f4d35e;
            text-shadow: 0 2px 4px rgba(0,0,0,0.6);
        }
        .accommodation-overlay p {
            font-size: 1rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        .accommodation-overlay a {
            align-self: flex-start;
            color: #fffaf0;
            background: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .accommodation-overlay a:hover {
            background: #f4d35e;
            color: #2b1e16;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .accommodation-card {
                height: 300px;
            }
            .accommodation-overlay {
                opacity: 1;
                padding: 20px;
            }
            .accommodation-overlay h4 {
                font-size: 1.4rem;
            }
            .accommodation-overlay p {
                font-size: 0.9rem;
            }
            .accommodation-overlay a {
                font-size: 0.85rem;
                padding: 6px 14px;
            }
        }
        /* Travel Style - Creative Card Layout */
        .travel-style-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 350px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            margin-bottom: 25px;
            background: #fffaf0;
        }
        .travel-style-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .travel-style-card img {
            width: 100%;
            height: 50%;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
            transition: transform 0.5s ease;
        }
        .travel-style-card:hover img {
            transform: scale(1.1);
        }
        .travel-style-content {
            padding: 20px;
            text-align: center;
            background: #fffaf0;
        }
        .travel-style-content h4 {
            font-family: 'Cinzel', serif;
            font-size: 1.6rem;
            color: #2b1e16;
            margin-bottom: 10px;
        }
        .travel-style-content p {
            font-size: 0.95rem;
            color: #2b1e16;
            margin-bottom: 12px;
        }
        .travel-style-content ul {
            font-size: 0.9rem;
            color: #2b1e16;
            list-style: none;
            padding: 0;
            margin-bottom: 15px;
        }
        .travel-style-content ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        .travel-style-content ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #b89778;
            position: absolute;
            left: 0;
            top: 2px;
        }
        .travel-style-content a {
            color: #b89778;
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 8px 16px;
            border: 1.5px solid #b89778;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .travel-style-content a:hover {
            background: #f4d35e;
            color: #2b1e16;
            border-color: #f4d35e;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .travel-style-card {
                height: 400px;
            }
            .travel-style-card img {
                height: 40%;
            }
            .travel-style-content h4 {
                font-size: 1.4rem;
            }
            .travel-style-content p {
                font-size: 0.9rem;
            }
            .travel-style-content ul {
                font-size: 0.85rem;
            }
            .travel-style-content a {
                font-size: 0.85rem;
                padding: 6px 14px;
            }
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #b89778, #f4d35e);
            color: #2b1e16;
            padding: 80px 0 60px; /* Adjusted top padding for header + buffer */
            text-align: center;
        }
        .cta-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
        }
        .cta-btn {
            background: #2b1e16;
            color: #fffaf0;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Cinzel', serif;
            font-size: 1rem;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        .cta-btn:hover {
            background: #4a3726;
            color: #f4d35e;
        }
        /* More Tanzania Safari Adventures - Parallax Styling */
        .more-packages {
            background: linear-gradient(180deg, #f0e4d7 0%, #fffaf0 100%);
            position: relative;
            overflow: hidden;
        }
        .parallax-bg {
            transform: translate3d(0, 0, 0);
            will-change: transform;
            background-attachment: fixed;
        }
        .parallax-img {
            transform: translate3d(0, 0, 0);
            will-change: transform;
        }
        .package-card-vertical {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            background: #fffaf0;
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .package-card-vertical:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .package-card-vertical:hover img {
            transform: scale(1.1);
        }
        .package-card-vertical:hover .package-hover-effect {
            opacity: 1;
        }
        .package-card-vertical .package-overlay {
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .package-card-vertical:hover .package-overlay {
            opacity: 1;
        }
        .package-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .package-badge {
            position: absolute;
            top: 0;
            right: 0;
            margin: 3px;
            padding: 4px 8px;
            background: #b89778;
            color: #fffaf0;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }
        .package-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        @media (max-width: 768px) {
            .package-card-vertical {
                height: auto;
            }
            .package-img-wrapper {
                height: auto;
            }
            .package-body {
                padding: 15px;
            }
            .package-body h5 {
                font-size: 1.3rem;
            }
            .package-body p {
                font-size: 0.85rem;
            }
            .package-body ul {
                font-size: 0.8rem;
            }
            .package-badge {
                font-size: 0.75rem;
                padding: 4px 8px;
            }
            .parallax-bg {
                background-attachment: scroll;
            }
            .parallax-img {
                transform: none;
            }
        }
        /* Footer */
        footer {
            background: #2b1e16;
            color: #fffaf0;
            padding: 50px 0;
        }
        footer .brand-img img {
            height: 40px;
        }
        footer .brand-desc {
            font-size: 0.95rem;
            color: #e0d9c8;
        }
        footer .social-list a {
            color: #b89778;
        }
        footer h6 {
            font-family: 'Cinzel', serif;
            color: #f4d35e;
            font-size: 1.2rem;
        }
        footer .footer-link a {
            color: #e0d9c8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        footer .footer-link a:hover {
            color: #f4d35e;
        }
        footer .footer-bottom {
            padding-top: 20px;
            text-align: center;
        }
        footer .footer-bottom p {
            font-size: 0.9rem;
            color: #e0d9c8;
        }
        footer .footer-bottom a {
            color: #f4d35e;
            text-decoration: none;
        }
        footer .row img {
            height: 60px;
            filter: brightness(0.8);
        }
     