:root {
    --primary-color: #8B5A3C;
    --primary-dark: #6B4430;
    --primary-light: #A67C5D;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F9F7F5;
    --border-color: #E5E5E5;
    --accent: #D4A574;
    --success: #4A7C4E;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--background);
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

.nav-main {
    background: var(--background);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 5px 15px var(--shadow);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--background-alt);
}

.hero-section {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    background: var(--background-alt);
}

.hero-content {
    order: 2;
    padding: 20px 0;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.hero-image {
    order: 1;
    margin-bottom: 30px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.intro-cards {
    padding: 80px 20px;
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-item {
    background: var(--background);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.story-section {
    padding: 80px 20px;
    background: var(--background-alt);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-content img {
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--shadow);
}

.story-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.benefits-grid {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin: -30px auto 50px;
    max-width: 600px;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-card {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-content {
    padding: 30px;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-content p {
    color: var(--text-light);
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--primary-color);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card blockquote {
    border-left: none;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card footer {
    color: var(--accent);
    font-weight: 600;
}

.workshop-selection {
    padding: 80px 20px;
    background: var(--background-alt);
}

.workshop-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.workshop-card {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

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

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

.workshop-info {
    padding: 30px;
}

.workshop-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.workshop-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.workshop-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select-workshop {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-workshop:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
}

.form-card {
    background: var(--background-alt);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.final-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--primary-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px var(--shadow-heavy);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px var(--shadow-heavy);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

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

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

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

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

.btn-accept:hover {
    background: #3D6741;
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-story {
    padding: 80px 20px;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.story-block:last-child {
    margin-bottom: 0;
}

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

.team-section {
    padding: 80px 20px;
    background: var(--background-alt);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-card {
    background: var(--background);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
}

.team-image {
    margin-bottom: 20px;
}

.team-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 5px solid var(--primary-light);
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

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

.team-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background: var(--background-alt);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
    background: var(--background-alt);
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-intro {
    padding: 60px 20px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-card-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.service-card-detailed:last-child {
    margin-bottom: 0;
}

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

.service-content-large {
    padding: 30px;
}

.service-content-large h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    background: var(--background-alt);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-content-large > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 8px;
}

.price-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.service-benefits {
    padding: 80px 20px;
    background: var(--background-alt);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--success);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-light);
}

.cta-services {
    padding: 80px 20px;
    text-align: center;
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-main {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    background: var(--background-alt);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-faq {
    padding: 80px 20px;
    background: var(--background-alt);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px var(--shadow);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-contact {
    padding: 80px 20px;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
}

.thanks-card {
    background: var(--background-alt);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background: var(--background);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.thanks-contact {
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 60px 20px;
    background: var(--background);
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    color: var(--text-light);
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--background);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
}

.cookie-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tbody tr:last-child {
    border-bottom: none;
}

.notice {
    background: var(--background-alt);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--accent);
    margin: 20px 0;
    font-style: italic;
}

#resetCookieConsent {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        background: transparent;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 10px 20px;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        padding: 100px 40px;
    }

    .hero-content {
        order: 1;
        flex: 1;
    }

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

    .hero-image {
        order: 2;
        flex: 1;
        margin-bottom: 0;
    }

    .card-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card-item {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-content img {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }

    .benefit-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(33.333% - 27px);
        min-width: 280px;
    }

    .workshop-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .workshop-card {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(50% - 20px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .service-card-detailed {
        flex-direction: row;
    }

    .service-card-detailed.reverse {
        flex-direction: row-reverse;
    }

    .service-image-large {
        flex: 1;
    }

    .service-image-large img {
        height: 100%;
    }

    .service-content-large {
        flex: 1;
        padding: 40px;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

    .faq-list {
        gap: 25px;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .story-block {
        flex-direction: row;
        align-items: center;
    }

    .story-block.reverse {
        flex-direction: row-reverse;
    }

    .story-block img {
        flex: 1;
    }

    .story-text {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .workshop-card {
        flex: 1 1 calc(33.333% - 27px);
    }

    .team-card {
        flex: 1 1 calc(25% - 30px);
    }
}