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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #ff6b35;
    --accent-color: #ffd23f;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #1e4020;
}

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

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark-text);
    color: white;
    padding: 3rem 2rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 1.5rem;
}

.nav-links a {
    color: #ccc;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    padding-left: 0.5rem;
}

.nav-cta {
    margin-top: auto;
}

.nav-btn {
    display: block;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #e55a2b;
}

.main-content {
    margin-left: 280px;
}

.hero-magazine {
    display: flex;
    min-height: 90vh;
    position: relative;
}

.hero-overlay {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4020 100%);
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
}

.hero-text-block {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-text);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-magazine h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    flex: 1;
    overflow: hidden;
}

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

.intro-columns {
    display: flex;
    padding: 5rem 4rem;
    gap: 4rem;
    background: var(--bg-light);
}

.column-left {
    flex: 1.5;
    padding-right: 2rem;
}

.column-right {
    flex: 1;
}

.column-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.column-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.inline-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.3rem;
    transition: all 0.3s;
}

.inline-cta:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.column-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.quote-section {
    background: var(--dark-text);
    color: white;
    padding: 4rem;
    text-align: center;
}

.quote-section blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.quote-section p {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-section cite {
    font-size: 1.1rem;
    font-style: normal;
    color: var(--accent-color);
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.story-item-large {
    flex: 2;
    min-width: 60%;
    position: relative;
    overflow: hidden;
}

.story-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 3rem;
}

.story-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.story-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.story-item-small {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-item-small:nth-child(3) {
    background: var(--primary-color);
    color: white;
}

.story-item-small h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.story-item-small p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-showcase {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
}

.service-card.featured .service-image {
    flex: 1;
}

.service-card.featured .service-content {
    flex: 1;
}

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

.service-card.featured .service-image {
    height: auto;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1e4020;
}

.testimonial-wave {
    background: var(--accent-color);
    padding: 5rem 4rem;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--light-text);
}

.philosophy-asymmetric {
    display: flex;
    min-height: 500px;
}

.philosophy-text {
    flex: 1.2;
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 1;
    overflow: hidden;
}

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

.benefits-stacked {
    padding: 6rem 4rem;
    background: white;
}

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

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    min-width: 80px;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

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

.approach-section {
    background: var(--dark-text);
    color: white;
    padding: 6rem 4rem;
}

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

.approach-text {
    flex: 1.5;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: white;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: white;
}

.cta-immersive {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e55a2b 100%);
    padding: 6rem 4rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95);
}

.btn-large {
    padding: 1.2rem 3rem;
    background: white;
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.faq-compact {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.faq-compact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 400px;
}

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

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

.footer-magazine {
    background: var(--dark-text);
    color: white;
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dark-text);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

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

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, serif;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e55a2b;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
}

.sticky-btn {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.page-hero {
    padding: 6rem 4rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4020 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.about-story {
    display: flex;
    gap: 4rem;
    padding: 5rem 4rem;
    background: white;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-section {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

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

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    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;
}

.member-role {
    color: var(--secondary-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
}

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

.values-section {
    padding: 5rem 4rem;
    background: white;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.journey-section {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

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

.journey-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.journey-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.journey-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.journey-step p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 4rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.services-detail-grid {
    padding: 4rem;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1.5;
    padding: 3rem;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--light-text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.comparison-section {
    padding: 5rem 4rem;
    background: white;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.comparison-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.comparison-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.comparison-recommendation {
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
}

.booking-cta-section {
    padding: 5rem 4rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.booking-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.booking-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.contact-info-section {
    padding: 4rem;
    background: var(--bg-light);
}

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

.contact-info-box {
    flex: 1;
    min-width: 350px;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4020 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 3rem;
}

.map-overlay {
    text-align: center;
    color: white;
}

.map-overlay p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.map-description {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-info-cards {
    padding: 4rem;
    background: white;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.faq-contact {
    padding: 4rem;
    background: var(--bg-light);
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.directions-section {
    padding: 4rem;
    background: white;
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-option {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.direction-option p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.legal-page {
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-update {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--light-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: bold;
    color: var(--dark-text);
}

.cookie-table td {
    color: var(--light-text);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-text);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1e4020;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 220px;
        padding: 2rem 1.5rem;
    }

    .main-content {
        margin-left: 220px;
    }

    .hero-magazine {
        flex-direction: column;
    }

    .hero-overlay {
        padding: 4rem 2rem;
    }

    .hero-magazine h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 2rem;
    }

    .main-content {
        margin-left: 0;
    }

    .intro-columns,
    .philosophy-asymmetric,
    .about-story,
    .approach-grid,
    .contact-grid {
        flex-direction: column;
    }

    .services-magazine-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .service-card.featured {
        flex-direction: column;
    }

    .hero-magazine h1 {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .story-grid {
        flex-direction: column;
    }

    .story-item-large {
        min-width: 100%;
        height: 400px;
    }

    .faq-item {
        min-width: 100%;
    }

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

    .service-detail-content {
        min-width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .modal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

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

    .hero-overlay {
        padding: 3rem 1.5rem;
    }

    section {
        padding: 3rem 1.5rem !important;
    }

    .thanks-container {
        padding: 2rem;
    }
}