    :root {
        --primary-color: #8f7b72;
        --secondary-color: #4a3728;
        --background-color: #f2eeed;
        --text-color: #4a3728;
        --accent-color: #d2b48c;
    }

    body, html {
        margin: 0;
        padding: 0;
        font-family: 'Arial', sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    header {
        background-color: var(--primary-color);
        color: var(--background-color);
        padding: 20px 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 40px;
        margin-right: 10px;
    }

    .nav-links {
        list-style: none;
        display: flex;
    }

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        color: var(--background-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--accent-color);
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background-color: var(--background-color);
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }

    .carousel {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .carousel-container {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel-slide {
        min-width: 100%;
        position: relative;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        position: absolute;
        bottom: 20%;
        left: 10%;
        right: 10%;
        text-align: center;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: white;
        padding: 16px;
        border: none;
        cursor: pointer;
        font-size: 18px;
        z-index: 10;
    }

    .carousel-button.prev {
        left: 20px;
    }
    
    .carousel-button.next {
        right: 20px;
    }

    .cta-button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color);
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        font-weight: bold;
    }

    .cta-button:hover {
        background-color: var(--primary-color);
        color: var(--background-color);
    }

    section {
        padding: 100px 0;
    }

    h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .course-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .course-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .course-card:hover {
        transform: translateY(-10px);
    }

    .course-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .course-card h3 {
        padding: 20px;
        margin: 0;
    }

    .course-card p {
        padding: 0 20px;
        flex-grow: 1;
    }

    .course-card .button {
        display: block;
        text-align: center;
        background-color: var(--primary-color);
        color: var(--background-color);
        padding: 10px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        margin-top: auto;
    }

    .course-card .button:hover {
        background-color: var(--secondary-color);
    }

    .blog-posts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .blog-post {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .blog-post img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-post h3 {
        margin-top: 0;
    }

    .blog-post a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
    }

    .piano-latino {
        background-color: var(--primary-color);
        color: var(--background-color);
        padding: 60px 0;
        margin-top: 30px;
        text-align: center;
    }

    .piano-latino h2 {
        margin-bottom: 20px;
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .video-item {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }

    .video-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
        

    footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
        }

        .social-links {
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 24px;
            margin: 0 10px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--secondary-color);
        }

        /* FontAwesome Icons */
        .social-links a i {
            margin-right: 8px;
        }

    /* Musical Puzzle Styles */
    .puzzle-container {
        width: 300px;
        height: 300px;
        margin: 50px auto;
        position: relative;
        border: 2px solid var(--primary-color);
    }

    .puzzle-piece {
        width: 98px;
        height: 98px;
        position: absolute;
        border: 1px solid var(--secondary-color);
        cursor: pointer;
        transition: all 0.3s ease;
        background-size: 300px 300px;
    }

    @media (max-width: 850px) {
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            padding: 20px 0;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .menu-toggle {
            display: flex;
        }

        .course-grid {
            grid-template-columns: 1fr;
        }

        .blog-posts {
            grid-template-columns: 1fr;
        }

        .carousel-button {
            padding: 10px;
            margin-top: -300px;
            font-size: 14px;
        }

        .course-grid  {
        margin-top: -600px;
        }
    }