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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #c49a6c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --link-color: #2d5a3d;
    --font-main: 'Georgia', serif;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.magazine-layout {
    background-color: var(--bg-white);
}

.hero-editorial {
    position: relative;
    height: 600px;
    background-color: var(--bg-light);
}

.hero-image-container {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-overlay h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-overlay p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.intro-columns {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.intro-columns .container-magazine {
    display: flex;
    gap: 60px;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

.col-main h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
}

.visual-break {
    padding: 0;
    background-color: var(--bg-light);
}

.dual-image-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.image-block {
    flex: 1;
    position: relative;
    background-color: var(--border-color);
}

.image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-block caption {
    display: block;
    padding: 20px 30px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    background-color: var(--bg-white);
}

.content-feature {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.feature-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.feature-text {
    flex: 1.2;
}

.feature-image {
    flex: 1;
    background-color: var(--bg-light);
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

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

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

.services-preview {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.services-preview h3 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-mag {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 35px;
}

.service-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.cta-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-family: var(--font-heading);
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-select:hover {
    background-color: #3d6a4d;
}

.content-deep {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.col-wide {
    max-width: 900px;
    margin: 0 auto;
}

.col-wide h3 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

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

.testimonial-mag {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px 50px;
    background-color: var(--bg-white);
    border-left: 5px solid var(--primary-color);
    font-size: 19px;
    font-style: italic;
    color: var(--text-dark);
}

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

.testimonial-mag footer {
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.contemporary-focus {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.feature-layout-reverse {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.cta-section-editorial {
    padding: 90px 0;
    background-color: var(--primary-color);
}

.cta-box-magazine {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-box-magazine h3 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-box-magazine p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-btn-primary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 40px;
    text-decoration: none;
    font-size: 17px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

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

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

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container-magazine h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.form-container-magazine > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-box p {
    margin: 5px 0;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.references {
    padding: 60px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.references h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-dark);
}

.reference-list {
    padding-left: 20px;
}

.reference-list li {
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.reference-list a {
    color: var(--link-color);
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-hero h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.about-content,
.services-detailed,
.contact-content {
    padding: 80px 0;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.approach-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--bg-white);
    padding: 35px;
    border: 1px solid var(--border-color);
    min-width: 280px;
}

.approach-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.timeline-section h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.expertise-columns {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-col {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
}

.expertise-col h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--primary-color);
}

.expertise-col ul {
    list-style: none;
    padding-left: 0;
}

.expertise-col ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.expertise-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.service-detail {
    margin-bottom: 70px;
}

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

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

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

.service-detail-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.contact-layout {
    display: flex;
    gap: 70px;
}

.contact-info-section,
.contact-map-section {
    flex: 1;
}

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

.contact-block h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.map-placeholder {
    position: relative;
    background-color: var(--bg-light);
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.additional-info,
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.additional-info h3,
.faq-section h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.process-grid,
.faq-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step,
.faq-item {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    padding: 35px;
    min-width: 280px;
}

.step-number {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.process-step h4,
.faq-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.thanks-content {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 70px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-box h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    display: none;
}

.service-confirmation p {
    margin: 0;
    font-size: 17px;
    color: var(--text-dark);
}

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

.next-steps h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.next-steps ul {
    padding-left: 0;
    list-style: none;
}

.next-steps ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

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

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

.additional-resources {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.additional-resources h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: var(--text-dark);
}

.resources-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--bg-light);
    padding: 35px;
    min-width: 280px;
}

.resource-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.resource-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #3d6a4d;
    text-decoration: underline;
}

.legal-page {
    background-color: var(--bg-white);
    padding: 60px 0;
}

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

.container-legal h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.legal-section a {
    color: var(--link-color);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .container-magazine {
        padding: 0 30px;
    }

    .intro-columns .container-magazine {
        flex-direction: column;
    }

    .dual-image-layout {
        flex-direction: column;
    }

    .feature-layout,
    .feature-layout-reverse {
        flex-direction: column;
    }

    .service-card-mag {
        flex: 1 1 100%;
    }

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

    .expertise-columns {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
        padding: 35px;
    }

    .hero-overlay h2 {
        font-size: 32px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .approach-card,
    .process-step,
    .faq-item,
    .resource-card {
        flex: 1 1 100%;
    }

    .form-container-magazine {
        padding: 40px 30px;
    }

    .thanks-box {
        padding: 50px 30px;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-bottom {
        padding: 30px 30px 0;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .cta-btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}