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

:root {
    --primary: #283966;
    --secondary: #F6B9F7;
    --light: #CCD2F0;
    --dark: #2d1b3d;
    --text: #333;
    --white: #fff;
    --gray: #f5f5f5;
    --shadow: rgba(221, 146, 240, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

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

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-small {
    padding: 8px 24px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 60px 0;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-petals {
    width: 100%;
    height: 100%;
    position: relative;
}

.petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50% 0 50% 0;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.petal:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.petal:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.petal:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.petal:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.petal:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes float {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    background: #c4c4c4;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.feature-item .icon {
    width: 30px;
    height: 30px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    background: #c4c4c4;
    aspect-ratio: 1;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background: var(--gray);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text);
}

/* Installations Section */
.installations-section {
    background: var(--white);
}

.installations-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.installation-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
}

.installation-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
}

.card-image img {
    border-radius: 15px;
    background: #c4c4c4;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.card-content p {
    margin-bottom: 1.5rem;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text);
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Baskets Section */
.baskets-section {
    background: var(--gray);
}

.baskets-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.baskets-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.basket-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.basket-item:hover {
    transform: translateY(-10px);
}

.basket-image {
    height: 250px;
    overflow: hidden;
}

.basket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c4c4c4;
}

.basket-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark);
}

.basket-item > p {
    padding: 0 1.5rem 1rem;
    color: var(--text);
}

.basket-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.basket-features span {
    background: var(--light);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Guide Section */
.guide-section {
    background: var(--white);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: var(--gray);
    border-radius: 20px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-icon {
    width: 60px;
    height: 60px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    background: var(--light);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .price {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.pricing-header p {
    color: var(--text);
    margin-top: 0.5rem;
}

.pricing-card.featured .pricing-header p {
    color: var(--light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray);
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.1);
    color: var(--light);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.featured .pricing-features svg {
    color: var(--secondary);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Shop Section */
.shop-section {
    background: var(--white);
}

.shop-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background: var(--gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #c4c4c4;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.product-info p {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Masterclass Section */
.masterclass-section {
    background: var(--gray);
}

.masterclass-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.instructors {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.instructor-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
}

.instructor-card:nth-child(even) {
    flex-direction: row-reverse;
}

.instructor-image {
    flex: 0 0 250px;
}

.instructor-image img {
    width: 100%;
    border-radius: 15px;
    background: #c4c4c4;
    aspect-ratio: 1;
    object-fit: cover;
}

.instructor-image.animated img {
    animation: subtleFloat 6s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.instructor-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.instructor-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.instructor-specialties span {
    background: var(--light);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.masterclass-process {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.masterclass-process h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.process-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.process-item h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Resources Section */
.resources-section {
    background: var(--white);
    padding: 60px 0;
}

.resources-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--light);
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.resource-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.resource-link svg {
    width: 24px;
    height: 24px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary);
}

.newsletter-form button:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Map */
.map-container {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px var(--shadow);
        transition: right 0.3s;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content,
    .installation-card,
    .instructor-card,
    .baskets-grid,
    .pricing-grid,
    .shop-grid,
    .process-grid {
        flex-direction: column !important;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    color: var(--white);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.cookie-content p a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-content p a:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    white-space: nowrap;
    padding: 10px 24px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

/* Extra small devices (320px and down) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-content,
    .installation-card,
    .instructor-card {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .installation-card,
    .instructor-card {
        padding: 20px;
    }
    
    .baskets-grid,
    .pricing-grid,
    .shop-grid,
    .process-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .basket-item,
    .pricing-card,
    .product-card {
        min-width: auto;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .step {
        padding: 20px;
        gap: 15px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-column {
        min-width: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
    
    .basket-features {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .basket-features span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .instructor-specialties {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .instructor-specialties span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .resource-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .feature-item .icon {
        width: 24px;
        height: 24px;
    }
    
    .tips-list li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .pricing-features svg {
        width: 16px;
        height: 16px;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .instructor-image {
        flex: 0 0 200px;
    }
    
    .instructor-title {
        font-size: 0.9rem;
    }
    
    .masterclass-process {
        padding: 20px;
    }
    
    .process-item h4 {
        font-size: 1rem;
    }
    
    .process-item p {
        font-size: 0.85rem;
    }
}