:root {
            --primary-color: #1db5b5;
            --primary-dark: #159999;
            --text-dark: #333;
            --text-light: #777;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        iframe {
            position: relative;
            z-index: 5;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header */
        .header-section {
            background: white;
            padding: 40px 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo-container img {
            width: 100%;
            max-width: 450px;
        }

        .tagline {
            color: var(--text-light);
            font-size: 14px;
            margin: 15px 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-dark);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(29, 181, 181, 0.4);
        }

        /* Navigation */
        .navbar {
            background: var(--primary-color) !important;
            padding: 15px 0;
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 10px 25px !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 60%;
        }

        .navbar-nav .nav-link:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .hero-section h1 {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .hero-section p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Feature Cards */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(29, 181, 181, 0.2);
            border-color: var(--primary-color);
        }

        .feature-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: transform 0.4s ease;
        }

        .feature-card:hover img {
            transform: scale(1.05);
        }

        .feature-card h3 {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(29, 181, 181, 0.15);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 4px solid var(--primary-color);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .testimonial-avatar {
            transform: scale(1.1) rotate(5deg);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .testimonial-name {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Hours Section */
        .hours-section {
            padding: 80px 0;
            background: white;
        }

        .hours-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(29, 181, 181, 0.3);
            transition: all 0.4s ease;
        }

        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(29, 181, 181, 0.4);
        }

        .hours-card h3 {
            margin-bottom: 30px;
            font-weight: 700;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            transition: padding-left 0.3s ease;
        }

        .hours-item:hover {
            padding-left: 10px;
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
        }

        footer p {
            margin: 0;
            opacity: 0.8;
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }


        .map-container {
            background: white;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: 100%;
            min-height: 450px;
        }

        .map-container iframe {
            border-radius: 10px;
            width: 100%;
            height: 100%;
            min-height: 420px;
            border: none;
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }