/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Color Variables */
:root {
    --primary-indigo: #1a237e;
    --primary-indigo-dark: #0d1754;
    --vermilion: #d32f2f;
    --gold: #ffd700;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --paper-texture: #fdf8f3;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-indigo);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-indigo);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--vermilion);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--paper-texture) 0%, #fff 100%);
    padding: 60px 0;
    text-align: center;
    flex-shrink: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.brand-info {
    text-align: left;
}

.brand-name {
    color: var(--primary-indigo);
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    color: var(--primary-indigo);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background-color: var(--primary-indigo);
    color: white;
}

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

.cta-secondary {
    background-color: transparent;
    color: var(--primary-indigo);
    border: 2px solid var(--primary-indigo);
}

.cta-secondary:hover {
    background-color: var(--primary-indigo);
    color: white;
    transform: translateY(-2px);
}

/* Utility Classes */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--vermilion) 50%, var(--primary-indigo) 100%);
    margin: 0;
}

.hero-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--vermilion) 50%, var(--primary-indigo) 100%);
    margin: 0;
}

/* Main Sections */
.introduction, .noh-masks, .kabuki-makeup, .workshops, .musical-ensemble, .video-courses, .products, .heritage-library, .contacts {
    padding: 80px 0;
    text-align: center;
}

.introduction {
    background-color: var(--white);
}

.noh-masks {
    background-color: var(--light-gray);
}

.kabuki-makeup {
    background-color: var(--white);
}

.workshops {
    background-color: var(--light-gray);
}

.musical-ensemble {
    background-color: var(--white);
}

.video-courses {
    background-color: var(--light-gray);
}

.products {
    background-color: var(--white);
}

.heritage-library {
    background-color: var(--light-gray);
}

.contacts {
    background-color: var(--white);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header h2 {
    color: var(--primary-indigo);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Introduction Section */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary-indigo);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.intro-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-indigo);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 20px 0;
    text-align: left;
}

.content-text h3 {
    color: var(--primary-indigo);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.content-text li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.content-text li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.content-image {
    text-align: center;
}

.content-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.learn-more {
    background-color: var(--primary-indigo);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.learn-more:hover {
    background-color: var(--primary-indigo-dark);
    transform: translateY(-2px);
}

/* Workshop Grid */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.workshop-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--vermilion);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.workshop-card h3 {
    color: var(--primary-indigo);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.workshop-card p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.workshop-details {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    gap: 15px;
}

.workshop-details span {
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: var(--light-gray);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.workshop-cta {
    text-align: center;
    margin-top: 60px;
}

/* Ensemble Content */
.ensemble-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ensemble-info {
    text-align: left;
}

.ensemble-info h3 {
    color: var(--primary-indigo);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.ensemble-info > p {
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.ensemble-types {
    margin-top: 30px;
}

.ensemble-type {
    margin-bottom: 25px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.ensemble-type h4 {
    color: var(--primary-indigo);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ensemble-type p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.ensemble-image {
    text-align: center;
}

.ensemble-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ensemble-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Course Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.course-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-image img:hover {
    transform: scale(1.05);
}

.course-content {
    padding: 30px;
    text-align: left;
}

.course-content h3 {
    color: var(--primary-indigo);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.course-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.course-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    background-color: var(--light-gray);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
    text-align: left;
}

.product-info h3 {
    color: var(--primary-indigo);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.product-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--vermilion);
    margin-bottom: 20px;
}

.product-cta {
    background-color: var(--primary-indigo);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background-color: var(--primary-indigo-dark);
    transform: translateY(-2px);
}

/* Heritage Library */
.library-content {
    max-width: 1100px;
    margin: 0 auto;
}

.library-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.library-feature {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--vermilion);
}

.library-feature h3 {
    color: var(--primary-indigo);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.library-feature p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.library-access h3 {
    color: var(--primary-indigo);
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
}

.access-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tier {
    padding: 30px 25px;
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--gold);
}

.tier h4 {
    color: var(--primary-indigo);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tier p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--gold);
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-details h4 {
    color: var(--primary-indigo);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-details a {
    color: var(--primary-indigo);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--vermilion);
}

.contact-details p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--vermilion);
}

.contact-form h3 {
    color: var(--primary-indigo);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-indigo);
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-submit {
    background-color: var(--primary-indigo);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: var(--primary-indigo);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.footer-brand h4 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand h4 a:hover {
    color: var(--gold);
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.link-group h5 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-indigo) 0%, #2c3e8f 100%);
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text h4 {
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    color: #e8e8e8;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-width: 100px;
}

.cookie-btn.primary {
    background-color: var(--gold);
    color: var(--primary-indigo);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cookie-btn.primary:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.cookie-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-1px);
}

.cookie-btn.tertiary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.tertiary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.cookie-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.cookie-link:hover {
    text-decoration: underline;
    color: #ffed4a;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: white;
    color: var(--text-dark);
    border-top: 3px solid var(--gold);
    padding: 30px 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.customization-content {
    max-width: 1200px;
    margin: 0 auto;
}

.customization-content h4 {
    color: var(--primary-indigo);
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
}

.cookie-categories {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.cookie-category {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.category-header {
    margin-bottom: 10px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-indigo);
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    position: relative;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider {
    background-color: var(--primary-indigo);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-slider {
    background-color: var(--gold);
    opacity: 0.7;
}

.category-name {
    font-size: 1.1rem;
}

.category-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    margin-left: 65px;
}

.customization-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .logo-section {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .brand-name {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-text {
        text-align: center;
    }

    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .workshop-details {
        flex-direction: column;
        gap: 10px;
    }

    .ensemble-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ensemble-info {
        text-align: center;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .library-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .access-tiers {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 80px;
    }

    .customization-actions {
        flex-direction: column;
    }

    .customization-actions .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        gap: 15px;
    }

    .cta-primary, .cta-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .workshop-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }
}