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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #c77d2b;
    --accent-color: #2d5f7a;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

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

.nav-links li {
    margin-bottom: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    margin-top: 30px;
}

.btn-nav {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background-color: #a86824;
}

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

.hero-editorial {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.95) 0%, rgba(45, 95, 122, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-text {
    max-width: 720px;
    color: var(--bg-white);
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

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

.intro-columns {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    background-color: var(--bg-white);
}

.col-main {
    flex: 2;
}

.col-main h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.col-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fact-box {
    background-color: var(--bg-light);
    padding: 28px;
    border-left: 4px solid var(--secondary-color);
}

.fact-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.inline-cta {
    margin-top: 32px;
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    padding-right: 20px;
}

.link-arrow:after {
    content: "→";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.link-arrow:hover:after {
    transform: translateX(4px);
}

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

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

.grid-item.large {
    flex: 2;
    min-width: 400px;
}

.grid-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.feature-story {
    display: flex;
    padding: 100px 80px;
    gap: 70px;
    align-items: center;
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

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

.featured-quote {
    background-color: var(--bg-light);
    padding: 36px 40px;
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--secondary-color);
}

.featured-quote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: var(--text-light);
}

.story-image {
    flex: 1;
}

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

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.cards-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 26px;
    line-height: 1.6;
    color: var(--bg-white);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--bg-white);
    font-size: 17px;
    margin-bottom: 4px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.services-showcase {
    padding: 100px 80px;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-content {
    padding: 36px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

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

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

.btn-service {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--accent-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-service:hover {
    background-color: var(--primary-color);
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.consultation-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px 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 textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.insight-content h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--primary-color);
    text-align: center;
}

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

.final-cta {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

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

.cta-box h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

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

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

.main-footer {
    background-color: #0f1f2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 80px 30px;
    margin-left: 0;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

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

.btn-sticky {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #a86824;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

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

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-story {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
}

.story-col {
    flex: 1;
}

.story-col h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

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

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.values-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 17px;
    color: var(--text-light);
}

.expertise-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
}

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

.expertise-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px;
}

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

.service-header {
    background-color: var(--bg-light);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.service-header h2 {
    font-size: 30px;
    color: var(--primary-color);
}

.price-tag {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    padding: 40px;
}

.service-body p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

.service-body h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-body ul {
    margin-bottom: 28px;
}

.service-body ul li {
    padding: 6px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-info {
    padding: 80px;
}

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

.contact-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.contact-cta {
    padding: 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

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

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

.thanks-section {
    padding: 100px 80px;
    text-align: center;
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 32px;
}

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

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

.thanks-details {
    text-align: left;
    margin-bottom: 48px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

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

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

.thanks-info {
    padding: 60px 80px;
    background-color: var(--bg-light);
}

.info-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.info-box a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

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

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

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 240px;
        padding: 30px 24px;
    }

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

    .intro-columns,
    .feature-story {
        flex-direction: column;
    }

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

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

    .nav-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .nav-links li {
        margin-bottom: 0;
    }

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

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

    .hero-overlay {
        padding: 40px 24px;
    }

    .intro-columns,
    .feature-story,
    .benefits-cards,
    .testimonial-feature,
    .services-showcase,
    .form-section,
    .insight-section,
    .final-cta,
    .page-hero,
    .about-story,
    .approach-section,
    .values-section,
    .team-section,
    .cta-section,
    .services-detail,
    .contact-info,
    .contact-cta,
    .faq-section,
    .thanks-section,
    .thanks-info,
    .legal-page {
        padding: 60px 24px;
    }

    .main-footer {
        padding: 40px 24px 24px;
    }

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

    .cookie-banner {
        padding: 20px 24px;
    }

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

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

    .consultation-form {
        padding: 32px 24px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
