body {
    padding-top: 80px;
}

.hero, .intro-section, .services-section, .pricing-section, .areas-section, .process-section, .testimonials-section, .dance-styles-section, .contact-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
}

.hero {
    height: 95vh;
    background-color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 3rem;
    background-color: var(--background-white);
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDownHero 1s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 5rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--primary-color);
}

.hero-accent {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.4;
    opacity: 1;
}

.hero-links {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.hero-link {
    color: var(--text-light);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-link:hover {
    color: var(--primary-color);
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hero-link:hover .arrow {
    transform: translateY(2px);
}

@keyframes slideDownHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-section {
    padding: 6rem 0;
    background-color: #F5F5F566;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

.intro-left {
    position: relative;
    z-index: 2;
}

.title-card {
    background-color: var(--background-white);
    padding: 0.5rem 0 0.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100px;
    left: 200px;
    width: 400px;
    max-width: calc(100vw - 240px);
    z-index: 3;
}

.content-card {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: calc(18rem - 20px);
    margin-right: 2rem;
    max-width: calc(100% - 2rem);
    z-index: 2;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 0;
    margin-right: 0;
    letter-spacing: -0.02em;
    width: 100%;
    text-align: left;
}

.highlight {
    background-color: #ffc500;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    box-shadow: 0 0 0 3px rgba(255, 197, 0, 0.3);
    position: relative;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.intro-cta {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.intro-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.services-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 500px;
}

.services-left {
    grid-row: 1 / 3;
    background-color: var(--background-white);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.services-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.services-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services-left:hover::before {
    height: 100%;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.services-grid {
    display: contents;
}

.service-block {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.service-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-block:hover::before {
    height: 100%;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.pricing-section {
    padding: 6rem 0;
    background-color: #F5F5F566;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.venue-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.venue-offer {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: var(--background-white);
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover::before {
    height: 100%;
}

.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
}

.popular-badge {
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-save {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.package-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.package-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: left;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--background-light);
    line-height: 1.4;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-cta {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    width: 100%;
}

.package-cta:hover {
    background-color: var(--accent-color);
}

.featured-cta {
    background-color: var(--accent-color);
}

.featured-cta:hover {
    background-color: var(--primary-color);
}

.pricing-cta-section {
    text-align: center;
    margin-top: 4rem;
}

.pricing-main-cta {
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
}

.pricing-main-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.areas-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.areas-left {
    max-width: 450px;
}

.areas-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.areas-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.areas-expertise {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.area-item {
    background-color: var(--background-light);
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.area-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.area-item:hover {
    background-color: var(--background-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.area-item:hover::before {
    height: 100%;
}

.featured-area {
    background-color: var(--accent-color);
    color: var(--background-white);
    font-weight: 500;
}

.featured-area:hover {
    background-color: var(--primary-color);
}

.process-section {
    padding: 6rem 0;
    background-color: #F5F5F566;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.process-step {
    background-color: var(--background-white);
    padding: 2rem 1.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 250px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.process-step:hover::before {
    height: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto 1.5rem;
    font-family: 'Inter Tight', sans-serif;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

.timeline-connector {
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--background-light));
    flex: 1;
    margin: 0 1rem;
    position: relative;
}

.timeline-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: -8px;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: bold;
}

.testimonials-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 400px;
}

.testimonial-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.featured-testimonial {
    grid-row: 1 / 3;
    padding: 3rem;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.testimonial-quote p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.featured-testimonial .testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
}

.venue {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 400;
}

.dance-styles-section {
    padding: 6rem 0;
    background-color: #F5F5F566;
}

.dance-styles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dance-styles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dance-styles-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.dance-styles-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.dance-styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    height: 400px;
}

.dance-style-card {
    background-color: var(--background-white);
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.dance-style-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.dance-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dance-style-card:hover::before {
    height: 100%;
}

.style-title {
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.style-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
}

.contact-section {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.form-instruction-card {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.form-instruction {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
}

.contact-form {
    max-width: 100%;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--background-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--background-white);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 23, 68, 0.1);
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 1.5rem;
}

.form-submit {
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    width: 100%;
}

.form-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.studio-info {
    margin-bottom: 2rem;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.studio-title {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.studio-address {
    margin-bottom: 2rem;
}

.studio-address p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.studio-address strong {
    color: var(--primary-color);
    font-weight: 500;
}

.studio-features {
    margin-bottom: 2rem;
}

.feature-item {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.studio-contact p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.studio-contact strong {
    color: var(--primary-color);
    font-weight: 500;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* Large tablets - 3 cards */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.8rem 1.3rem;
    }
    
    .package-name {
        font-size: 1.2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .package-features li {
        font-size: 0.85rem;
    }
}

/* Medium tablets - 2 cards */
@media (max-width: 950px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .package-name {
        font-size: 1rem;
    }
    
    .package-price {
        font-size: 1.6rem;
    }
    
    .package-features li {
        font-size: 0.75rem;
        padding: 0.2rem 0;
    }
    
    .package-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Mobile - 1 card */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-title::after {
        width: 60px;
        height: 3px;
        margin: 1rem auto 0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .intro-section {
        padding: 4rem 0;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        height: auto;
    }

    .intro-left {
        position: relative;
        z-index: 2;
        order: 2;
    }

    .title-card {
        position: relative;
        right: auto;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 1.5rem;
    }

    .content-card {
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        max-width: 100%;
        z-index: 2;
        position: relative;
        padding: 1.5rem;
    }

    .intro-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .intro-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .intro-title {
        font-size: 2rem;
        margin-bottom: 0;
        text-align: center;
    }

    .intro-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .services-section {
        padding: 4rem 0;
    }

    .services-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        height: auto;
        text-align: center;
    }

    .services-left {
        grid-row: auto;
        max-width: 100%;
        padding: 2rem;
        position: relative;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block {
        text-align: left;
        padding: 1.5rem;
        position: relative;
    }

    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .package-name {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .package-price {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .package-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .featured {
        transform: none;
        border: 2px solid var(--accent-color);
        margin: 1rem 0;
    }

    .package-price {
        font-size: 2rem;
    }

    .venue-info {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .areas-section {
        padding: 4rem 0;
    }

    .areas-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .areas-left {
        max-width: 100%;
    }

    .areas-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .area-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .process-section {
        padding: 4rem 0;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .process-timeline {
        gap: 2rem;
    }

    .timeline-row {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .timeline-connector {
        display: none;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .testimonials-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        height: auto;
    }

    .featured-testimonial {
        grid-row: auto;
        padding: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
        height: auto;
    }

    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .featured-testimonial .testimonial-quote p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .dance-styles-section {
        padding: 4rem 0;
    }

    .dance-styles-header {
        margin-bottom: 3rem;
    }

    .dance-styles-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .dance-styles-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        height: auto;
    }

    .dance-style-card {
        padding: 2rem 1.5rem;
        height: auto;
    }

    .style-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .style-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .contact-header {
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
        border-radius: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .form-submit {
        padding: 1.2rem;
        font-size: 1.1rem;
        border-radius: 6px;
    }

    .studio-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .map-container {
        margin-top: 1rem;
        border-radius: 6px;
    }

    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 0;
    background-color: #F5F5F566;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--background-white);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background-color: var(--accent-color);
    transition: height 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Responsive FAQ Styles */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding-left: 35px;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 540px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-question::before {
        min-width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .faq-answer {
        padding-left: 33px;
        font-size: 0.9rem;
    }
}