* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #c4975f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    display: flex;
    padding: 100px 40px;
}

.intro-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.workshops-overview {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.workshops-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.workshop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.workshop-card {
    flex: 0 1 calc(33.333% - 30px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workshop-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
}

.values-split {
    display: flex;
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.values-content {
    flex: 1;
    padding: 0 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.values-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.values-image {
    flex: 0 0 45%;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.booking-info {
    flex: 1;
}

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

.booking-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.workshop-form {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.location-split {
    display: flex;
    background-color: var(--bg-white);
    padding: 100px 40px;
}

.location-image {
    flex: 0 0 50%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    flex: 1;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.location-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.location-content .cta-secondary {
    align-self: flex-start;
    margin-top: 15px;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-light);
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    color: var(--bg-light);
    line-height: 1.8;
}

.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--bg-light);
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 30px 40px;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--bg-light);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
}

.page-hero h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-split {
    display: flex;
    padding: 80px 40px;
}

.about-image {
    flex: 0 0 50%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-section {
    display: flex;
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.mission-content {
    flex: 1;
    padding: 0 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.mission-content p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.mission-image {
    flex: 0 0 50%;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.team-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 0 1 calc(33.333% - 40px);
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.values-full {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.values-full h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-columns {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.workshop-space {
    display: flex;
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.space-content {
    flex: 1;
    padding: 0 80px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.space-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.space-features {
    list-style: none;
    margin-top: 20px;
}

.space-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.space-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.space-image {
    flex: 0 0 50%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail {
    display: flex;
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-content {
    flex: 1;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p,
.service-content ul {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-content ul {
    margin-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
}

.service-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-cta {
    padding: 80px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h3 {
    font-size: 2.2rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--bg-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.cta-container .cta-primary:hover {
    background-color: var(--bg-light);
}

.contact-split {
    display: flex;
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.contact-info {
    flex: 1;
    padding: 0 80px 0 60px;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

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

.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.directions-content {
    max-width: 900px;
    margin: 0 auto;
}

.directions-content h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.directions-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.visit-info {
    display: flex;
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.visit-image {
    flex: 0 0 50%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-content {
    flex: 1;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.visit-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.faq-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 0 1 calc(50% - 20px);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-hero {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-container > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

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

.next-steps ol {
    margin-left: 25px;
}

.next-steps li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-image {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bg-light);
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .values-split,
    .location-split,
    .about-split,
    .mission-section,
    .workshop-space,
    .service-detail,
    .contact-split,
    .visit-info {
        flex-direction: column;
    }

    .intro-text,
    .values-content,
    .location-content,
    .about-content,
    .mission-content,
    .space-content,
    .service-content,
    .contact-info,
    .visit-content {
        padding: 40px 20px;
    }

    .workshop-card,
    .team-member,
    .value-item,
    .faq-item {
        flex: 0 1 100%;
    }

    .values-columns,
    .team-grid,
    .faq-grid {
        flex-direction: column;
    }

    .booking-container {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}