        :root {
            --primary-color: #0c1a35;
            --secondary-color: #c9caaa;
            --text-light: #f8f9fa;
        }

        body {
            font-family: 'Montserrat', sans-serif;
        }

        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.3rem;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
        }

        .hero {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 120px 0 80px 0;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero .lead {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn-custom {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .btn-custom:hover {
            background-color: #b8b998;
            transform: translateY(-2px);
        }

        .hero-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            height: auto;
        }
		.hero-img2 {
            border-radius: 10px;
            max-width: 70%;
            height: auto;
        }
		 .hero-img-bando {
            max-width: 100%;
            height: auto;
        }
		  footer a.text-light:hover {
        color: #c9caaa !important;
    }

    .social-links a:hover {
        color: #c9caaa !important;
        transform: scale(1.2);
        transition: all 0.3s;
    }

    footer h5 {
        color: #c9caaa !important;
        font-weight: 600;
    }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 50px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-img {
                margin-top: 2rem;
            }
        }
