/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ad Disclosure */
.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Asymmetric */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    font-size: 15px;
    font-weight: 500;
    color: #495057;
    position: relative;
}

.nav-right a:hover {
    color: #2c5aa0;
}

/* Hero Section - Offset Layout */
.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 5% 80px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-right img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5aa0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1e4178;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,90,160,0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: #ffffff;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #2c5aa0;
    color: #ffffff;
}

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: #2c5aa0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-large:hover {
    background: #1e4178;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,90,160,0.35);
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 5% 100px 15%;
    gap: 80px;
}

.intro-block-offset {
    flex: 1.2;
}

.intro-block-offset h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
}

.intro-visual {
    flex: 0.8;
    margin-top: -50px;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Services Grid - Asymmetric */
.services-grid {
    padding: 100px 5%;
    background: #f8f9fa;
}

.section-title-offset {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 60px;
    margin-left: 8%;
    font-weight: 800;
}

.services-container-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: calc(33.333% - 30px);
    min-width: 300px;
    transition: all 0.3s ease;
}

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

.service-card.offset-1 { margin-top: 0; }
.service-card.offset-2 { margin-top: 40px; }
.service-card.offset-3 { margin-top: 80px; }
.service-card.offset-4 { margin-top: 20px; }
.service-card.offset-5 { margin-top: 60px; }
.service-card.offset-6 { margin-top: 100px; }

.service-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card .price {
    font-size: 32px;
    color: #2c5aa0;
    font-weight: 800;
    margin: 25px 0;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1e4178;
    transform: translateY(-2px);
}

/* Why Us Split */
.why-us-split {
    display: flex;
    align-items: center;
    padding: 120px 8% 120px 5%;
    gap: 60px;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 30px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    font-size: 17px;
    color: #495057;
    padding: 15px 0 15px 35px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 22px;
    font-weight: bold;
}

.why-image {
    flex: 1;
    margin-left: -60px;
}

.why-image img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* Process Section - Irregular */
.process-irregular {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.process-irregular h2 {
    font-size: 42px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

.process-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    width: calc(50% - 25px);
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.step:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-1 { margin-top: 0; }
.step-2 { margin-top: 50px; }
.step-3 { margin-top: 100px; }
.step-4 { margin-top: 150px; }

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: #e9ecef;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    color: #1a2332;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

/* Testimonials - Overlay */
.testimonials-overlay {
    padding: 120px 5%;
    background: #2c5aa0;
}

.testimonials-overlay h2 {
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 800;
}

.testimonials-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    background: rgba(255,255,255,0.95);
    padding: 35px 30px;
    border-radius: 10px;
    width: calc(33.333% - 30px);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-offset-1 { margin-top: 0; }
.testimonial-offset-2 { margin-top: 40px; }
.testimonial-offset-3 { margin-top: 80px; }

.testimonial p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

/* CTA Full Width */
.cta-full-width {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 44px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-content-centered p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Form Section - Offset */
.form-section-offset {
    padding: 100px 5% 100px 12%;
}

.form-container-asymmetric {
    max-width: 600px;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 35px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: #495057;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    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: #2c5aa0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e4178;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 5%;
    background: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 5% 30px;
}

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

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

.footer-col-1 { flex: 1.5; }

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-col ul li a {
    color: #adb5bd;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #343a40;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #adb5bd;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,35,50,0.97);
    padding: 25px 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: #8ab4f8;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2c5aa0;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1e4178;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* About Page */
.page-hero-about {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content-overlap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 800px;
}

.hero-content-overlap h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-content-overlap p {
    font-size: 20px;
    color: #f8f9fa;
    line-height: 1.6;
}

.about-story {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 70px;
}

.story-block-left {
    flex: 1.3;
}

.story-block-left h2 {
    font-size: 40px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-right {
    flex: 0.7;
}

.story-image-right img {
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.values-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 800;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    width: calc(33.333% - 35px);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.value-offset-1 { margin-top: 0; }
.value-offset-2 { margin-top: 60px; }
.value-offset-3 { margin-top: 120px; }

.value-card h3 {
    font-size: 26px;
    color: #1a2332;
    margin-bottom: 18px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.experience-section {
    padding: 100px 5%;
}

.experience-content h2 {
    font-size: 40px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.stats-asymmetric {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
    min-width: 200px;
}

.stat-1 { margin-top: 0; }
.stat-2 { margin-top: 40px; }
.stat-3 { margin-top: 80px; }

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #6c757d;
    font-weight: 600;
}

.approach-section {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    background: #f8f9fa;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 18px;
}

.cta-about {
    padding: 100px 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-about p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 35px;
}

/* Services Page */
.services-hero {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4178 100%);
}

.services-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 900;
}

.services-hero p {
    font-size: 19px;
    color: #f8f9fa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 5%;
}

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

.service-left {
    flex-direction: row;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #1a2332;
    margin-bottom: 22px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 25px 0 25px 25px;
    color: #495057;
}

.service-detail-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 0.8;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #495057;
    font-weight: 600;
}

.price-amount {
    font-size: 34px;
    color: #2c5aa0;
    font-weight: 900;
}

.services-included {
    padding: 100px 5%;
    background: #f8f9fa;
}

.services-included h2 {
    font-size: 40px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.included-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.included-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    width: calc(25% - 30px);
    min-width: 240px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.included-item h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 15px;
    font-weight: 700;
}

.included-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.cta-services {
    padding: 100px 5%;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    color: #1a2332;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-services p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-hero {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 18px;
    font-weight: 900;
}

.contact-hero p {
    font-size: 18px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    display: flex;
    gap: 60px;
    padding: 100px 5%;
}

.contact-info-offset {
    flex: 1;
}

.contact-info-offset h2 {
    font-size: 38px;
    color: #1a2332;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 40px;
    color: #1a2332;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.faq-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #1a2332;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 5%;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 900;
}

.thanks-content > p {
    font-size: 19px;
    color: #495057;
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c5aa0;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.thanks-contact p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 44px;
    color: #1a2332;
    margin-bottom: 30px;
    font-weight: 900;
}

.legal-intro {
    font-size: 18px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a2332;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #2c5aa0;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a2332;
}

.cookie-table td {
    font-size: 15px;
    color: #495057;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-left {
        padding-right: 0;
        text-align: center;
    }

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

    .hero-image-right {
        margin-top: 40px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

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

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .why-us-split {
        flex-direction: column;
        padding: 60px 5%;
    }

    .why-image {
        margin-left: 0;
    }

    .process-steps-offset {
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin-top: 0 !important;
    }

    .testimonials-flex {
        flex-direction: column;
    }

    .testimonial {
        width: 100%;
        margin-top: 0 !important;
    }

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

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

    .about-story,
    .approach-section {
        flex-direction: column;
    }

    .stats-asymmetric {
        flex-direction: column;
    }

    .stat {
        margin-top: 0 !important;
    }

    .service-detail {
        flex-direction: column !important;
        gap: 40px;
    }

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

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }
}

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

    .section-title-offset {
        font-size: 32px;
        margin-left: 0;
        text-align: center;
    }

    .nav-right {
        flex-direction: column;
        gap: 10px;
    }
}