
        :root {
            --ocean-green: #00A1A1;
            --dark-ocean: #007A7A;
            --dark-gray: #2F2F2F;
            --footer-dark: #1C2526;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-gray);
            line-height: 1.8;
            background: #FFFFFF;
            overflow-x: hidden;
            margin: 0;
        }
        .bg-ocean-green { background: var(--ocean-green) !important; }
        .text-ocean-green { color: var(--ocean-green) !important; }
        .btn-custom {
            background: var(--ocean-green);
            color: #FFFFFF;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .btn-custom:hover {
            background: var(--dark-ocean);
            color: #FFFFFF;
        }
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.6rem, 4vw, 2rem);
            font-weight: 700;
            color: var(--ocean-green);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        #hero {
            background: linear-gradient(rgba(0, 161, 161, 0.5), rgba(0, 161, 161, 0.5)), url('images/facility.jpg') center/cover no-repeat;
            height: 60vh;
            min-height: 400px;
        }
 


    
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes fadeInNav { 0% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }
        @keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
        .nav-link {
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            padding: 8px 12px !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active { color: var(--ocean-green) !important; }
        .nav-item { opacity: 0; animation: fadeInNav 0.5s ease forwards; }
        .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .nav-item:nth-child(4) { animation-delay: 0.4s; }
        .nav-item:nth-child(5) { animation-delay: 0.5s; }
        .nav-item:nth-child(6) { animation-delay: 0.6s; }
        .nav-item:nth-child(7) { animation-delay: 0.7s; }
        .nav-item:nth-child(8) { animation-delay: 0.8s; }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 70%;
            flex-shrink: 1;
        }
        .navbar-brand span {
            font-size: clamp(0.85rem, 2.2vw, 1.1rem);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .navbar-toggler {
            border: none;
            width: 38px;
            height: 38px;
            background: var(--ocean-green);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: background 0.3s ease;
        }
        .navbar-toggler:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 161, 161, 0.5);
        }
        .navbar-toggler span {
            width: 18px;
            height: 2px;
            background: #FFFFFF;
            margin: 2px 0;
            transition: all 0.3s ease;
        }
        .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--ocean-green);
            border-radius: 2px;
        }
        .section-subtitle {
            color: #666;
            font-weight: 300;
            font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        }
        .text-dark-ocean { color: var(--dark-ocean) !important; }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: var(--ocean-green);
            color: #FFFFFF;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: background 0.3s ease, opacity 0.3s ease;
        }
        .back-to-top:hover, .back-to-top:focus {
            background: var(--dark-ocean);
            outline: none;
        }
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            max-width: 90%;
            text-align: center;
        }
        .cookie-consent button {
            background: var(--ocean-green);
            border: none;
            padding: 8px 16px;
            border-radius: 5px;
            margin-left: 10px;
            color: #FFFFFF;
        }
        .footer-links a { transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--ocean-green) !important; }
        .whatsapp-container {
            position: fixed;
            bottom: 15px;
            right: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
        }
        .whatsapp-container a {
            text-decoration: none;
            background: #25D366;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }
        .fade-in { opacity: 0; animation: fadeIn 1s ease forwards; }
        .fade-in-delay-1 { animation-delay: 0.3s; }
        .fade-in-delay-2 { animation-delay: 0.6s; }
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .navbar-nav {
                padding: 10px 0;
                background: #FFFFFF;
                border-top: 1px solid rgba(0,0,0,0.1);
            }
            .nav-link { padding: 10px 15px !important; font-size: 0.95rem; }
            .navbar-toggler { width: 34px; height: 34px; }
            .navbar-toggler span { width: 16px; height: 1.5px; margin: 1.5px 0; }
            #hero { height: 50vh; min-height: 350px; }
            .navbar-brand { max-width: 60%; }
        }
        @media (max-width: 767px) {
            .footer-links { text-align: center; }
            .footer-links li { margin-bottom: 8px; }
            .row-cols-md-3 > .col { text-align: center; }
            .whatsapp-container { right: 10px; }
            .whatsapp-container span { display: none; }
            .navbar-brand { max-width: 50%; }
        }
        @media (max-width: 576px) {
            #hero { height: 45vh; min-height: 300px; }
            #hero h1 { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }
            #hero p { font-size: clamp(0.85rem, 2.8vw, 0.95rem); }
            .navbar-brand img { height: 28px; }
            .section-title { font-size: clamp(1.4rem, 4vw, 1.6rem); }
            .section-subtitle { font-size: clamp(0.7rem, 1.8vw, 0.8rem); }
            .back-to-top { width: 36px; height: 36px; bottom: 15px; left: 15px; }
            .cookie-consent { bottom: 10px; padding: 10px 15px; font-size: 0.85rem; }
            .cookie-consent button { padding: 6px 12px; font-size: 0.8rem; }
            .navbar-brand { max-width: 40%; }
        }
    