
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #FDFBF8; /* Warm Neutral/Sand */
            color: #4A4A4A;
        }
        h1, h2, h3 {
            font-family: 'Lora', serif;
        }
        .hero-bg {
            background-image: url('assets/hero-section-image.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .highlight-gallery::-webkit-scrollbar {
            height: 8px;
        }
        .highlight-gallery::-webkit-scrollbar-thumb {
            background-color: #005A5B; /* Deep Teal */
            border-radius: 10px;
        }
        .highlight-gallery::-webkit-scrollbar-track {
            background: #EAE5DD;
        }
        .btn-primary {
            background-color: #005A5B; /* Deep Teal */
            color: #FFFFFF;
            transition: background-color 0.3s, transform 0.2s;
        }
        .btn-primary:hover {
            background-color: #004445;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: #EAE5DD;
            color: #005A5B;
            border: 1px solid #005A5B;
            transition: background-color 0.3s, color 0.3s;
        }
        .btn-secondary.active, .btn-secondary:hover {
            background-color: #005A5B;
            color: #FFFFFF;
        }
        .gallery-item {
            aspect-ratio: 1 / 1;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            justify-content: center;
            align-items: center;
        }
        .lightbox img {
            max-width: 90vw;
            max-height: 80vh;
        }
        .lightbox.active {
            display: flex;
            flex-direction: row;
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.3);
            color: white;
            border: none;
            font-size: 2.5rem;
            padding: 0.5rem 1.5rem;
            cursor: pointer;
            transition: background-color 0.2s;
            border-radius: 5px;
        }
        .lightbox-nav:hover {
            background-color: rgba(0,0,0,0.6);
        }
        .lightbox-prev {
            left: 20px;
        }
        .lightbox-next {
            right: 20px;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }
