@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4A6B;
    --primary-dark: #6B3A52;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --text: #3A3238;
    --text-light: #6B5B65;
    --bg: #FDF8F5;
    --white: #FFFFFF;
    --border: #E5D5C8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 74, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.badge i {
    color: var(--primary);
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(139, 74, 107, 0.15);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
}

.section {
    padding: 60px 0;
    overflow: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 13px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary);
    font-size: 16px;
}

.workshops-section {
    background: var(--bg);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 74, 107, 0.12);
}

.workshop-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.workshop-icon i {
    color: var(--white);
    font-size: 24px;
}

.workshop-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.workshop-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.6;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
}

.testimonial-card p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    color: var(--primary-dark);
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
}

.testimonial-info span {
    font-size: 12px;
    opacity: 0.8;
}

.cta-section {
    background: var(--accent);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 35px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 18px;
    margin-top: 2px;
    opacity: 0.9;
}

.contact-item div h4 {
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 13px;
    margin: 0;
    opacity: 0.85;
}

.contact-form-wrapper {
    background: var(--bg);
    border-radius: 20px;
    padding: 35px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 74, 107, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    background: var(--bg);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.policy-content {
    background: var(--white);
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

.policy-text h3 {
    font-size: 16px;
    color: var(--primary);
    margin: 20px 0 10px;
}

.policy-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-text li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
}

.error-content h1 {
    font-size: 100px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.error-content h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
}

.thankyou-content {
    max-width: 500px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    opacity: 0.7;
}

.privacy-links {
    display: flex;
    gap: 15px;
}

.privacy-links a {
    font-size: 11px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.privacy-links a:hover {
    opacity: 1;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 13px;
    color: var(--text);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.subpage-content {
    background: var(--white);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.content-block p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg);
    border-radius: 10px;
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
}

.feature-item span {
    font-size: 13px;
    font-weight: 500;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.info-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 12px;
}

.info-card h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 12px;
    color: var(--text-light);
}

.team-section {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-avatar i {
    font-size: 28px;
    color: var(--white);
}

.team-card h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
}

.schedule-section {
    background: var(--white);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    border-radius: 15px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 13px;
}

.schedule-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.schedule-table tr:nth-child(even) {
    background: var(--white);
}

.schedule-table td {
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-badges {
        flex-wrap: wrap;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .error-content h1 {
        font-size: 70px;
    }
    
    .schedule-table {
        font-size: 12px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 26px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .workshop-card {
        padding: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
}
