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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a4d7a;
}

.hero-offset {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 100px 60px 80px 60px;
    position: relative;
}

.hero-content-left {
    flex: 0 0 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a4d7a;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.hero-image-right {
    flex: 0 0 55%;
    position: relative;
    margin-left: -80px;
    margin-top: 60px;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8eef3;
}

.cta-primary {
    display: inline-block;
    background: #1a4d7a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #0f3856;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    padding: 120px 60px;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.intro-block {
    flex: 0 0 50%;
}

.intro-block.offset-right {
    padding-left: 100px;
}

.intro-block h2 {
    font-size: 38px;
    color: #1a4d7a;
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-block p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-visual {
    flex: 0 0 40%;
}

.intro-visual.offset-left {
    margin-left: -120px;
    margin-top: -60px;
}

.intro-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e8eef3;
}

.services-preview {
    padding: 100px 60px;
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a4d7a;
    margin-bottom: 15px;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(50% - 20px);
    max-width: 480px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card.card-offset-1 {
    margin-top: 0;
}

.service-card.card-offset-2 {
    margin-top: 60px;
}

.service-card.card-offset-3 {
    margin-top: 30px;
}

.service-card.card-offset-4 {
    margin-top: 80px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8eef3;
}

.service-card h3 {
    font-size: 24px;
    color: #1a4d7a;
    margin: 25px 25px 15px 25px;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 25px 20px 25px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    color: #d4af37;
    font-weight: 600;
    margin: 20px 25px;
}

.select-service {
    background: #1a4d7a;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px 25px 30px 25px;
    width: calc(100% - 50px);
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #0f3856;
}

.trust-block-overlap {
    background: #1a4d7a;
    color: #ffffff;
    padding: 80px 60px;
    margin: -40px 120px 80px 120px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.approach-section {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    align-items: center;
}

.approach-image {
    flex: 0 0 45%;
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
}

.approach-text {
    flex: 0 0 50%;
    padding-left: 40px;
}

.approach-text h2 {
    font-size: 38px;
    color: #1a4d7a;
    margin-bottom: 28px;
}

.approach-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.form-section-offset {
    padding: 100px 60px;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto 0 180px;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.form-container p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 35px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1a4d7a;
}

.submit-btn {
    background: #1a4d7a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0f3856;
}

.disclaimer-block {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 40px 60px;
    margin: 60px 120px;
}

.disclaimer-block p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px 60px;
}

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

.footer-col {
    flex: 0 0 30%;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.footer-col a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.cookie-accept {
    background: #d4af37;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background: #c29d2f;
}

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

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

.page-hero-about {
    padding: 140px 60px 80px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3856 100%);
    color: #ffffff;
}

.hero-text-offset {
    max-width: 700px;
    margin-left: 120px;
}

.hero-text-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.story-block-1 {
    flex: 0 0 48%;
}

.story-block-1 h2 {
    font-size: 38px;
    color: #1a4d7a;
    margin-bottom: 25px;
}

.story-block-1 p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image-1 {
    flex: 0 0 45%;
}

.story-image-1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
}

.about-approach {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background: #f8f9fa;
    align-items: center;
}

.approach-block-left {
    flex: 0 0 35%;
}

.approach-block-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
}

.approach-block-right {
    flex: 0 0 55%;
    padding-left: 40px;
}

.approach-block-right h2 {
    font-size: 38px;
    color: #1a4d7a;
    margin-bottom: 25px;
}

.approach-block-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-section {
    padding: 100px 60px;
}

.values-section h2 {
    font-size: 42px;
    color: #1a4d7a;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.about-team {
    padding: 80px 60px;
    background: #1a4d7a;
    color: #ffffff;
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #ffffff;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.95;
}

.cta-section-about {
    padding: 80px 60px;
    text-align: center;
}

.cta-section-about h2 {
    font-size: 38px;
    color: #1a4d7a;
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    background: #1a4d7a;
    color: #ffffff;
    padding: 16px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #0f3856;
    transform: translateY(-2px);
}

.services-hero {
    padding: 140px 60px 80px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3856 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.services-detailed {
    padding: 80px 60px;
}

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

.service-detail.offset-layout-1 {
    margin-left: 0;
}

.service-detail.offset-layout-2 {
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-detail.offset-layout-3 {
    margin-left: 80px;
}

.service-detail.offset-layout-4 {
    flex-direction: row-reverse;
    margin-right: 60px;
}

.service-detail.offset-layout-5 {
    margin-left: 40px;
}

.service-detail.offset-layout-6 {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
}

.service-info {
    flex: 0 0 50%;
}

.service-info h2 {
    font-size: 34px;
    color: #1a4d7a;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    color: #d4af37;
    font-weight: 600;
    margin: 25px 0;
}

.form-section-services {
    padding: 100px 60px;
    background: #f8f9fa;
}

.contact-hero {
    padding: 140px 60px 80px 60px;
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3856 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.contact-content {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    align-items: flex-start;
}

.contact-block-left {
    flex: 0 0 50%;
}

.contact-block-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #e8eef3;
}

.contact-info-right {
    flex: 0 0 40%;
    padding-top: 20px;
}

.contact-info-right h2 {
    font-size: 36px;
    color: #1a4d7a;
    margin-bottom: 35px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    color: #1a4d7a;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-directions {
    padding: 60px 60px 80px 60px;
    background: #f8f9fa;
}

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

.directions-content h2 {
    font-size: 32px;
    color: #1a4d7a;
    margin-bottom: 25px;
}

.directions-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #f8f9fa;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a4d7a;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 18px;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a4d7a;
}

.return-home {
    display: inline-block;
    background: #1a4d7a;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.return-home:hover {
    background: #0f3856;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #1a4d7a;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a4d7a;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-page li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #d0d7de;
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

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

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        flex: 1;
        margin-left: 0;
        margin-top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-block.offset-right {
        padding-left: 0;
    }

    .intro-visual.offset-left {
        margin-left: 0;
        margin-top: 0;
    }

    .service-cards-asymmetric {
        flex-direction: column;
    }

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

    .approach-section {
        flex-direction: column;
        padding: 80px 40px;
    }

    .form-container {
        margin: 0 auto;
    }

    .disclaimer-block {
        margin: 40px 20px;
    }

    .trust-block-overlap {
        margin: 0 40px 60px 40px;
    }

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

    .service-detail {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

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

    .section-header-offset {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1;
    }
}