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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6a9f;
    --accent-color: #c8965e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    gap: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
}

.ad-disclosure-mobile {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 10px 0;
}

.mobile-menu.active {
    display: flex;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-inline {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: border-color 0.3s;
}

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

.intro-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.split-content {
    display: flex;
    min-height: 500px;
}

.split-left, .split-right {
    flex: 1;
}

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

.split-right {
    display: flex;
    align-items: center;
    padding: 60px;
    background: var(--bg-white);
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.problem-amplification {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-amplification h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.testimonial-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

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

.testimonial-card cite {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.insight-section .container-narrow p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-split.reverse {
    flex-direction: row-reverse;
}

.service-item {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-item.full-width {
    min-width: 100%;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 24px 0;
}

.select-service {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-building {
    padding: 100px 20px;
    background: var(--bg-light);
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    padding: 20px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.references {
    padding: 60px 20px;
    background: var(--bg-white);
}

.references h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.references ol {
    margin-left: 20px;
}

.references li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references a {
    color: var(--primary-color);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 101;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

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

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

.btn-accept:hover {
    background: #b88551;
}

.btn-reject {
    background: var(--border-color);
    color: var(--text-dark);
}

.btn-reject:hover {
    background: #d1d5db;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-left, .about-right {
    flex: 1;
}

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

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: var(--bg-light);
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-split.reverse .about-right {
    background: var(--bg-white);
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

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

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

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.expertise-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

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

.expertise-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
}

.expertise-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.process-section .container-narrow p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.final-about-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.final-about-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-intro {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-detail {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail.reverse {
    background: var(--bg-light);
}

.service-detail-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
}

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

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

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

.service-detail-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.services-approach {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-layout {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.hours-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 12px;
}

.contact-visual {
    flex: 1;
    min-width: 350px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.visual-overlay p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-approach {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
}

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

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

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

.final-contact-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.final-contact-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.thanks-message {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.confirmation-details {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 60px;
}

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

.next-steps {
    margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-box {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.step-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-actions {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.thanks-actions h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-actions p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-tertiary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-tertiary:hover {
    background: var(--border-color);
}

.confidentiality-note {
    padding: 30px;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.confidentiality-note h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.additional-resources h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.resource-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.resource-card a:hover {
    color: var(--accent-color);
}

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul, .legal-page ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .hero-right {
        min-height: 300px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .split-right,
    .split-left {
        padding: 40px 30px;
    }

    .about-split,
    .about-split.reverse {
        flex-direction: column;
    }

    .about-right {
        padding: 40px 30px;
    }

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

    .service-detail-right {
        padding: 40px 30px;
    }

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

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept, .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .problem-grid,
    .testimonial-row,
    .services-split,
    .values-grid,
    .process-steps,
    .steps-grid {
        flex-direction: column;
    }

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

    .page-hero p {
        font-size: 18px;
    }
}
