    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --ocean-deep: #1a4d6d;
        --ocean-light: #4a90a4;
        --sand: #f4e4c1;
        --coral: #e07a5f;
        --sunset: #d4a373;
        --white: #ffffff;
        --dark: #2c3e50;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--dark);
        overflow-x: hidden;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(26, 77, 109, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 1rem 5%;
        transition: all 0.3s ease;
    }

    nav.scrolled {
        padding: 0.5rem 5%;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--white);
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo::before {
        content: "🌊";
        font-size: 1.5rem;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        position: relative;
        transition: color 0.3s;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--coral);
        transition: width 0.3s;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .mobile-menu span {
        width: 25px;
        height: 3px;
        background: var(--white);
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 50%, var(--sunset) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
        background-size: cover;
        background-position: bottom;
    }

    .hero-content {
        text-align: center;
        color: var(--white);
        z-index: 2;
        padding: 2rem;
        max-width: 800px;
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 8vw, 5rem);
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 1s ease;
    }

    .hero p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        margin-bottom: 2rem;
        opacity: 0.95;
        animation: fadeInUp 1s ease 0.2s backwards;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease 0.4s backwards;
    }

    .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-primary {
        background: var(--coral);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(224, 122, 95, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(224, 122, 95, 0.6);
    }

    .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--ocean-deep);
    }

    /* Floating Elements Animation */
    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .shape {
        position: absolute;
        opacity: 0.1;
        animation: float 20s infinite ease-in-out;
    }

    .shape:nth-child(1) {
        top: 20%;
        left: 10%;
        width: 80px;
        height: 80px;
        background: var(--white);
        border-radius: 50%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        top: 60%;
        right: 15%;
        width: 120px;
        height: 120px;
        background: var(--sand);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation-delay: 5s;
    }

    .shape:nth-child(3) {
        bottom: 20%;
        left: 20%;
        width: 60px;
        height: 60px;
        background: var(--coral);
        border-radius: 50%;
        animation-delay: 10s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-30px) rotate(10deg);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Sections */
    section {
        padding: 5rem 5%;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 3rem);
        color: var(--ocean-deep);
        margin-bottom: 1rem;
    }

    .section-header p {
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    /* About Section */
    .about {
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        align-items: center;
    }

    .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 3px solid var(--coral);
        border-radius: 20px;
        z-index: -1;
    }

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

    .about-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--ocean-deep);
        margin-bottom: 1rem;
    }

    .about-content p {
        margin-bottom: 1rem;
        color: #555;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--coral);
        display: block;
    }

    .stat-label {
        color: #666;
        font-size: 0.9rem;
    }

    /* Features Section */
    .features {
        background: linear-gradient(to bottom, #f8f9fa, var(--white));
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--ocean-deep), var(--coral));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        color: var(--ocean-deep);
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        color: #666;
        font-size: 0.95rem;
    }

    /* Gallery Section */
    .gallery {
        background: var(--ocean-deep);
        color: var(--white);
    }

    .gallery .section-header h2 {
        color: var(--white);
    }

    .gallery .section-header p {
        color: rgba(255, 255, 255, 0.8);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 1;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(26, 77, 109, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-text {
        color: var(--white);
        text-align: center;
        padding: 1rem;
    }

    .gallery-text h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    /* Community Section */
    .community {
        background: var(--sand);
        position: relative;
    }

    .community::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        height: 100px;
        background: var(--sand);
        clip-path: polygon(0 100%, 50% 0, 100% 100%);
    }

    .events-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .event-card {
        background: var(--white);
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        position: relative;
        border-left: 5px solid var(--coral);
    }

    .event-date {
        display: inline-block;
        background: var(--coral);
        color: var(--white);
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .event-card h3 {
        font-family: 'Playfair Display', serif;
        color: var(--ocean-deep);
        margin-bottom: 0.5rem;
    }

    /* Contact Section */
    .contact {
        background: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }

    .contact-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--ocean-deep);
        margin-bottom: 1rem;
    }

    .contact-details {
        margin-top: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: var(--ocean-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.3rem;
    }

    .contact-form {
        background: #f8f9fa;
        padding: 2.5rem;
        border-radius: 20px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--dark);
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-family: inherit;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--ocean-light);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    /* Footer */
    footer {
        background: var(--ocean-deep);
        color: var(--white);
        padding: 3rem 5% 1rem;
        text-align: center;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
        text-align: left;
    }

    .footer-section h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--sand);
    }

    .footer-section p,
    .footer-section a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        line-height: 2;
        transition: color 0.3s;
    }

    .footer-section a:hover {
        color: var(--coral);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .social-links a:hover {
        background: var(--coral);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--ocean-deep);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
        }

        .nav-links.active {
            display: flex;
        }

        .mobile-menu {
            display: flex;
        }

        .stats {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .about-image::before {
            display: none;
        }

        section {
            padding: 3rem 5%;
        }
    }

    /* Smooth Scroll */
    html {
        scroll-behavior: smooth;
    }

    /* Loading Animation */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }