body {
            background-color: black; /* Dark background color */
            color: #f0f0f0; /* Light text color */
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* --- APPBAR STYLES (from appbar.css) --- */
        .navbar {
            background-color:black !important; /* Fixed dark background for the branches page */
            padding: 10px 80px;
            transition: background 0.3s ease;
            z-index: 1030;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: #fcbf49 !important;
        }

        /* Individual Navigation Links (Increased Gap for desktop) */
        .nav-link {
            color: white !important;
            margin: 0 15px; /* INCREASED HORIZONTAL SPACING */
            font-weight: 500;
            font-size: 1.1rem;
            padding-bottom: 5px; 
            transition: all 0.3s ease-in-out;
            border-bottom: 4px solid transparent; 
        }

        /* Hover and Active states for links */
        .nav-link:hover {
            color: #ffda63 !important;
            border-bottom: 4px solid #ffc107; 
            transform: translateY(-2px); 
        }
        
        .nav-link.active {
            color: #ffc107 !important; 
            border-bottom: 4px solid #ffc107; 
            
        }
        
        @media (max-width: 991px) {
            .navbar {
                padding: 15px 15px;
            }
            .navbar-collapse {
                background-color: #1a1a1a;
                margin-top: 10px;
                border-radius: 8px;
                padding: 10px;
            }
            .nav-link {
                margin: 5px 0; /* Vertical margin for mobile dropdown */
                text-align: center;
                border-bottom: none;
            }
            .nav-link.active, .nav-link:hover {
                border-bottom: 4px solid #fcbf49 ; 
                color: #fcbf49 !important; 
            }
        }
        
        /* --- PAGE HEADER STYLES (from branches.css) --- */
        .page-header {
            /* Push the heading down below the fixed navbar */
            padding-top: 150px !important; 
        }

        /* Style for the main page title */
        .page-header h1 {
            font-size: 2.5rem;
            color: #ffc107; /* Yellow color for the title */
            font-family: 'Playfair Display', serif;
            letter-spacing: 2px;
        }

        /* --- CARD STYLES (from branches.css) --- */
        .custom-card {
            background-color: #1c1c1c; 
            border: 1px solid #333;
            border-radius: 8px; 
            overflow: hidden; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); 
            transition: transform 0.3s ease-in-out; 
        }

        .custom-card:hover {
            transform: translateY(-5px); 
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
        }

        .card-img-top {
            height: 350px; 
            object-fit: cover; 
        }

        .card-body {
            padding: 15px;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #ffc107; /* Highlight outlet name */
        }

        /* Custom 'Find Us' Button Styling */
        .custom-btn {
            background-color: #ffc107; 
            color: #121212; 
            border: none;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 4px;
            padding: 10px 8px;
            transition: background-color 0.2s ease, transform 0.2s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .custom-btn:hover {
            background-color: #ffda63; 
            color: #121212;
            transform: translateY(-1px);
        }

        /* Style for the new mobile number link */
        .phone-link {
    display: block;
    color: #f0f0f0; /* Light text color */
    background-color: #333;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px; /* Space below the Find Us button */
    padding: 10px 0;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
    /* Added explicit pointer cursor for better UX */
    cursor: pointer; 
}

        .phone-link:hover {
            background-color: #ffc107; /* Yellow background on hover */
            color: #121212; /* Dark text on hover */
        }

        .phone-link i {
            margin-right: 5px;
        }

        /* --- FOOTER STYLES (from footer.css) --- */
        .footer {
            background-color: #121212; 
            padding: 60px 0 20px 0;
            color: #ccc;
            border-top: 1px solid #333;
            margin-top: auto; 
            font-family: 'Poppins', sans-serif;
        }
        .logo-img {
            height: 85px; 
            width: auto;
        }
        .tagline {
            font-style: italic;
            font-size: 0.9rem;
            color: #ffc107;
            margin-top: 10px;
        }
        .section-title {
            color: #fff;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-link-list a {
            color: #ccc;
            text-decoration: none;
            line-height: 2.2;
            transition: color 0.3s;
        }
        .footer-link-list a:hover {
            color: #ffc107;
        }
        .social-icons a {
            color: #fff;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffc107;
        }
        .footer-copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
        }