        /* Ready to Dance Section */
        .ready-to-dance-section {
            background-image: linear-gradient(0deg, rgba(27, 68, 75, 0.7), rgba(27, 68, 75, 0.5)), url('../assets/ready_to_dance.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 8rem 0;
            color: #ffffff;
            text-align: center;
        }

        .ready-to-dance-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .ready-to-dance-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 2rem;
            line-height: 1.3;
            letter-spacing: 0.01em;
        }

        .ready-to-dance-description {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            font-weight: 400;
            font-style: italic;
        }

        .ready-to-dance-cta {
            display: flex;
            justify-content: center;
        }

        .transformation-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: #ffffff;
            color: #550040;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .transformation-button:hover {
            background: #550040;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }

        /* Responsive Design for Ready to Dance Section */
        @media (max-width: 768px) {
            .ready-to-dance-section {
                background-attachment: scroll;
                padding: 6rem 0;
            }
            
            .ready-to-dance-content {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .ready-to-dance-section {
                padding: 5rem 0;
            }
            
            .ready-to-dance-content {
                padding: 0 1rem;
            }
        }
