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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 64px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 12px;
}

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

.nav-right a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #1a1a1a;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f9fafb;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0c4a6e;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    color: #475569;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #0ea5e9;
    overflow: hidden;
    position: relative;
}

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: #0c4a6e;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-cta:hover {
    background: #075985;
    transform: translateY(-2px);
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 64px;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #0c4a6e;
    font-weight: 700;
}

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

.services-grid {
    padding: 100px 64px;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #0c4a6e;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #6b7280;
}

.service-card-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    color: #0c4a6e;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    color: #0c4a6e;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-image {
    flex: 1;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    max-height: 500px;
}

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

.btn-select-service {
    padding: 14px 32px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

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

.testimonials-section {
    padding: 100px 64px;
    background: #f9fafb;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0c4a6e;
    font-weight: 700;
}

.testimonials-split {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

.contact-cta-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 64px;
    gap: 80px;
    align-items: center;
}

.cta-left-content {
    flex: 1;
}

.cta-left-content h2 {
    font-size: 38px;
    color: #0c4a6e;
    margin-bottom: 24px;
    font-weight: 700;
}

.cta-left-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.cta-right-form {
    flex: 1;
    background: #f9fafb;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 14px 32px;
    background: #0c4a6e;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #075985;
}

.footer-main {
    background: #111827;
    color: #d1d5db;
    padding: 60px 64px 32px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid #374151;
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

.about-hero {
    padding: 120px 64px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.about-hero h1 {
    font-size: 48px;
    color: #0c4a6e;
    margin-bottom: 24px;
    font-weight: 700;
    max-width: 800px;
}

.about-hero p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
    max-width: 700px;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 64px;
}

.about-split {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #0c4a6e;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image-box {
    flex: 1;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-page {
    padding: 100px 64px;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    color: #0c4a6e;
    margin-bottom: 24px;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
}

.contact-page {
    padding: 100px 64px;
}

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

.contact-header h1 {
    font-size: 48px;
    color: #0c4a6e;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header p {
    font-size: 17px;
    color: #6b7280;
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-info-card h3 {
    font-size: 20px;
    color: #0c4a6e;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page {
    padding: 100px 64px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: #0c4a6e;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    color: #0c4a6e;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #374151;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 64px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: #0c4a6e;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-page p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #0c4a6e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.thanks-page a:hover {
    background: #075985;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left, .hero-right {
        min-height: 50vh;
    }

    .approach-section,
    .service-card-split,
    .contact-cta-section,
    .about-split,
    .contact-info-grid,
    .testimonials-split {
        flex-direction: column;
    }

    .nav-split {
        padding: 16px 24px;
    }

    .nav-right {
        display: none;
    }

    .services-grid,
    .testimonials-section,
    .contact-page,
    .about-hero,
    .services-page {
        padding: 60px 24px;
    }
}