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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7c;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.ad-disclosure {
    font-size: 0.75rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.nav-menu {
    list-style: none;
    margin-bottom: auto;
}

.nav-menu li {
    margin-bottom: 0.75rem;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: var(--secondary-color);
}

.nav-footer-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.nav-footer-links a:hover {
    color: var(--bg-white);
}

.main-content {
    margin-left: 280px;
    width: calc(100% - 280px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    gap: 3rem;
    background-color: var(--bg-light);
}

.hero-text-column {
    flex: 1;
    max-width: 600px;
}

.hero-text-column h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-magazine {
    display: flex;
    gap: 3rem;
    padding: 5rem 3rem;
}

.magazine-wide-column {
    flex: 2;
}

.magazine-narrow-column {
    flex: 1;
}

.magazine-wide-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.magazine-wide-column p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.highlight-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.featured-insight {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-insight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.insight-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.insight-overlay p {
    font-size: 1.0625rem;
    opacity: 0.95;
}

.services-preview {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-centered p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--text-dark);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-inline {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial-section {
    padding: 5rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.testimonial cite {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.85;
    font-style: normal;
}

.form-section-offset {
    display: flex;
    gap: 3rem;
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

.form-intro-column {
    flex: 1;
}

.form-intro-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro-column p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.form-column {
    flex: 1;
}

.main-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.approach-section {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.approach-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.approach-columns {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.value-proposition {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
    text-align: center;
}

.value-content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.value-content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-content-narrow p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: left;
}

.text-link-arrow {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.text-link-arrow:hover {
    color: #d35400;
}

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

.cta-section-bottom h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section-bottom p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 3rem 1rem;
    margin-top: auto;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9375rem;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    line-height: 1.6;
    opacity: 0.75;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 4rem 3rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-intro {
    padding: 4rem 3rem;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-narrow p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.mission-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.mission-image-left {
    flex: 1;
}

.mission-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mission-content-right {
    flex: 1;
}

.mission-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-content-right p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.expertise-section {
    padding: 5rem 3rem;
}

.expertise-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.expertise-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 3rem;
    background-color: var(--bg-light);
}

.content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.approach-detail {
    padding: 5rem 3rem;
}

.approach-detail h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
}

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

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-intro {
    padding: 3rem 3rem 1rem;
}

.service-detail-section {
    padding: 2rem 3rem 5rem;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.service-detail-header {
    background-color: var(--bg-light);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

.cta-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background-color: var(--secondary-color);
}

.pricing-note {
    padding: 4rem 3rem;
    background-color: var(--bg-light);
}

.simple-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.simple-list li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.form-section-services {
    padding: 5rem 3rem;
    background-color: var(--bg-white);
}

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

.form-container-centered h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.form-container-centered p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 4rem 3rem;
}

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

.contact-info-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.contact-email {
    font-weight: 600;
    color: var(--primary-color);
    user-select: all;
}

.email-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.map-placeholder {
    margin: 0;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

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

.map-overlay p {
    font-size: 1.0625rem;
    margin: 0;
}

.faq-section {
    padding: 5rem 3rem;
}

.faq-section h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.thanks-section {
    padding: 5rem 3rem;
    min-height: 60vh;
    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(--success-color);
    color: var(--bg-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(--primary-color);
}

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

.service-confirmation {
    margin-bottom: 2.5rem;
}

.selected-service-text {
    font-size: 1.0625rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-light);
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 1rem;
}

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

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero-editorial,
    .intro-magazine,
    .trust-section-split,
    .form-section-offset,
    .mission-section {
        flex-direction: column;
    }

    .approach-columns,
    .testimonial-container,
    .contact-grid,
    .footer-columns {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .hero-text-column h1 {
        font-size: 2rem;
    }

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

    .section-header-centered h2,
    .approach-section h2,
    .expertise-section h2,
    .values-section h2,
    .approach-detail h2,
    .faq-section h2,
    .cta-section-bottom h2,
    .cta-about h2 {
        font-size: 1.75rem;
    }

    .hero-editorial,
    .intro-magazine,
    .services-preview,
    .trust-section-split,
    .testimonial-section,
    .form-section-offset,
    .approach-section,
    .value-proposition,
    .cta-section-bottom,
    .about-intro,
    .mission-section,
    .expertise-section,
    .values-section,
    .approach-detail,
    .cta-about,
    .services-intro,
    .service-detail-section,
    .pricing-note,
    .form-section-services,
    .contact-info-section,
    .contact-approach,
    .faq-section,
    .thanks-section,
    .legal-page {
        padding: 3rem 1.5rem;
    }

    .site-footer {
        padding: 2rem 1.5rem 1rem;
    }
}
