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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a373;
    --accent-color: #e8734e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 40px 0;
    z-index: 100;
}

.brand-logo {
    padding: 0 30px;
    margin-bottom: 50px;
}

.brand-logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 5px;
}

.nav-menu a {
    display: block;
    padding: 14px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

.hero-editorial {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 80px;
}

.hero-text-block {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.intro-magazine {
    padding: 100px 80px;
    background-color: var(--bg-light);
}

.magazine-grid {
    display: flex;
    gap: 60px;
    max-width: 1400px;
}

.magazine-main {
    flex: 2;
}

.magazine-main h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.magazine-main p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.magazine-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.inline-cta {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

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

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-caption {
    position: absolute;
    bottom: 40px;
    right: 80px;
    background-color: var(--bg-white);
    padding: 25px 40px;
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
}

.story-section {
    padding: 120px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 40px;
    margin-bottom: 35px;
    line-height: 1.3;
}

.story-container p {
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.story-highlight {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
}

.story-highlight p {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.split-image-text {
    display: flex;
    min-height: 600px;
}

.split-left {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    flex: 1;
    padding: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.split-right p {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-preview {
    padding: 100px 80px;
    background-color: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

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

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

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

.btn-select-service:hover {
    background-color: #234b3d;
}

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

.testimonial-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-style: normal;
    font-weight: 600;
}

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

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 17px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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 {
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d05f37;
}

.final-cta {
    padding: 120px 80px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #d05f37;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d05f37;
}

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

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

.footer {
    margin-left: 240px;
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.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);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.sticky-cta-btn {
    display: block;
    padding: 16px 35px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d05f37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--bg-white);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background-color: #d05f37;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--bg-white);
}

.btn-cookie.btn-secondary:hover {
    border-color: var(--bg-white);
}

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

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

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-right {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-right p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

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

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 30px 0 25px;
}

.about-story {
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 6px;
}

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

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

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

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-member img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

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

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

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.philosophy-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.philosophy-highlight {
    margin: 50px 0;
    padding: 40px;
    background-color: var(--primary-color);
    border-radius: 6px;
    text-align: center;
}

.philosophy-highlight p {
    font-size: 26px;
    color: var(--bg-white);
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    padding: 100px 80px;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 79, 0.9);
    padding: 20px;
    color: var(--bg-white);
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.faq-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.faq-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.thanks-section {
    padding: 120px 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-subtext {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.service-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: var(--text-dark);
}

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

.thanks-next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 6px;
}

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

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

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

    .footer {
        margin-left: 200px;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .magazine-grid,
    .testimonials-grid,
    .process-steps,
    .team-grid,
    .contact-grid {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .split-image-text {
        flex-direction: column;
    }
}

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

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

    .footer {
        margin-left: 0;
    }

    .hero-editorial {
        height: 60vh;
    }

    .hero-overlay {
        padding: 0 30px;
    }

    .hero-text-block {
        padding: 40px 30px;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-magazine,
    .story-section,
    .services-preview,
    .testimonial-section,
    .process-section,
    .form-section,
    .final-cta,
    .services-detailed,
    .about-story,
    .values-section,
    .team-section,
    .philosophy-section,
    .cta-section,
    .contact-section,
    .faq-section,
    .thanks-section,
    .legal-page {
        padding: 60px 30px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-cards {
        flex-direction: column;
    }

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

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

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

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

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

    .page-header {
        padding: 60px 30px 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}
