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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.main-nav {
    background: #ffffff;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5a3c;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b5a3c;
}

.hero-section {
    background: #f8f5f2;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-visual {
    max-width: 900px;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    background: #8b5a3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.cta-primary:hover {
    background: #6d4730;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 60, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #8b5a3c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #8b5a3c;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #8b5a3c;
    color: #ffffff;
}

.intro-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.process-section {
    background: #f0ebe6;
    padding: 6rem 2rem;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

.workshops-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.workshops-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.workshops-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.workshop-item {
    display: flex;
    gap: 2.5rem;
    background: #f8f5f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.workshop-image {
    flex: 0 0 400px;
}

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

.workshop-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.workshop-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.workshop-duration {
    color: #8b5a3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workshop-details p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.workshop-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background: #8b5a3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #6d4730;
    transform: translateY(-2px);
}

.benefits-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 6rem 2rem;
}

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

.benefits-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-box {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.benefit-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4a574;
}

.benefit-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #f8f5f2;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #8b5a3c;
}

.testimonial p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #8b5a3c;
}

.booking-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.booking-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a3c;
}

.submit-btn {
    background: #8b5a3c;
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #6d4730;
    transform: translateY(-2px);
}

.final-cta-section {
    background: #f0ebe6;
    padding: 5rem 2rem;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #d4a574;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4a574;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    line-height: 1.5;
}

.cookie-content a {
    color: #d4a574;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #8b5a3c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #6d4730;
}

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

.cookie-btn.reject:hover {
    border-color: #ffffff;
}

.page-hero {
    background: #f0ebe6;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.values-section {
    background: #f8f5f2;
    padding: 6rem 2rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b5a3c;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.team-container h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-members {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    color: #8b5a3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #5a6c7d;
    line-height: 1.6;
}

.workshop-space {
    background: #f0ebe6;
    padding: 6rem 2rem;
}

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

.space-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.space-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.space-text {
    flex: 1;
}

.space-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.space-images {
    flex: 1;
}

.space-images img {
    border-radius: 8px;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.philosophy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.philosophy-text {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    background: #f8f5f2;
    padding: 5rem 2rem;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #f8f5f2;
}

.intro-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.intro-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.included-list {
    list-style: none;
    padding-left: 0;
}

.included-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a6c7d;
    line-height: 1.6;
}

.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background: #f8f5f2;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    flex: 0 0 450px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.service-meta span {
    color: #8b5a3c;
    font-weight: 600;
}

.service-description {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.what-learn {
    margin: 2rem 0;
}

.what-learn h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.what-learn ul {
    list-style: none;
    padding-left: 0;
}

.what-learn li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.what-learn li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5a3c;
}

.service-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5a3c;
}

.service-cta {
    display: inline-block;
    background: #8b5a3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #6d4730;
    transform: translateY(-2px);
}

.faq-section {
    background: #f8f5f2;
    padding: 6rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.booking-cta {
    background: #ffffff;
    padding: 5rem 2rem;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #8b5a3c;
}

.contact-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-detail a {
    color: #8b5a3c;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #999;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-caption {
    font-size: 0.95rem;
    color: #5a6c7d;
    text-align: center;
}

.visit-info {
    background: #f8f5f2;
    padding: 6rem 2rem;
}

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

.visit-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.visit-tips {
    display: flex;
    gap: 2rem;
}

.tip-box {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.tip-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8b5a3c;
}

.tip-box p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-cta {
    background: #ffffff;
    padding: 5rem 2rem;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f5f2;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background: #8b5a3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
}

.selected-service {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-name {
    font-size: 1.5rem;
    color: #8b5a3c;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #8b5a3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #6d4730;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #8b5a3c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #8b5a3c;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #8b5a3c;
    color: #ffffff;
}

.thanks-info {
    padding: 4rem 2rem;
    background: #ffffff;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.prep-tips {
    display: flex;
    gap: 2rem;
}

.prep-tip {
    flex: 1;
    background: #f8f5f2;
    padding: 2rem;
    border-radius: 8px;
}

.prep-tip h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8b5a3c;
}

.prep-tip p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-reminder {
    padding: 4rem 2rem;
    background: #f8f5f2;
}

.reminder-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.reminder-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reminder-box p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reminder-box a {
    color: #8b5a3c;
    font-weight: 600;
    font-size: 1.2rem;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    color: #999;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8b5a3c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #8b5a3c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-wrapper,
    .story-container,
    .space-layout,
    .contact-container {
        flex-direction: column;
    }

    .process-grid,
    .benefits-grid,
    .values-grid {
        flex-direction: column;
    }

    .process-card,
    .benefit-box,
    .value-item {
        flex: 1 1 100%;
    }

    .workshop-item,
    .service-detail-card {
        flex-direction: column;
    }

    .workshop-image,
    .service-detail-image {
        flex: 1 1 auto;
        max-height: 300px;
    }

    .team-members,
    .visit-tips,
    .prep-tips {
        flex-direction: column;
    }

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}
