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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-wrapper p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

.cookie-wrapper a {
    color: #76c7f5;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.8rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

.btn-decline:hover {
    border-color: #999999;
    background: rgba(255, 255, 255, 0.05);
}

.ad-disclosure-bar {
    background: #f0f0f0;
    color: #666666;
    text-align: center;
    padding: 0.6rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #dddddd;
}

.header-asymmetric {
    position: relative;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #003d7a 0%, #005aa8 100%);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    gap: 2.5rem;
}

.nav-offset a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-offset a:hover {
    opacity: 0.75;
}

.hero-asymmetric {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem;
    margin-left: 5%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2rem;
}

.cta-diagonal {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    transition: all 0.3s;
}

.cta-diagonal:hover {
    background: #e65525;
    transform: translateX(3px);
}

.hero-image-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    background: #e6f2f9;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.intro-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
}

.intro-block-left {
    flex: 1;
    padding: 3rem 2rem 2rem 0;
    border-left: 6px solid #003d7a;
    padding-left: 2.5rem;
}

.intro-block-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
}

.intro-block-right {
    flex: 1;
    padding: 2rem 0 3rem 2rem;
    background: #f8f8f8;
    padding-left: 2.5rem;
    padding-right: 2rem;
}

.intro-block-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444444;
}

.services-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.section-title-offset {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 4rem;
    margin-left: 15%;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    gap: 3rem;
    align-items: center;
}

.service-card.offset-1 {
    margin-left: 8%;
}

.service-card.offset-2 {
    margin-left: -3%;
    flex-direction: row-reverse;
}

.service-card.offset-3 {
    margin-left: 12%;
}

.service-card.offset-4 {
    margin-left: 2%;
    flex-direction: row-reverse;
}

.service-card.offset-5 {
    margin-left: 10%;
}

.service-card.offset-6 {
    margin-left: 5%;
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background: #e6f2f9;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003d7a;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.btn-service-select {
    padding: 1rem 2rem;
    background: #003d7a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section-diagonal {
    background: linear-gradient(135deg, #f0f0f0 0%, #e6e6e6 100%);
    padding: 6rem 3rem;
    margin-top: 6rem;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

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

.form-header-offset {
    margin-bottom: 3rem;
    margin-left: 10%;
}

.form-header-offset h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 1rem;
}

.form-header-offset p {
    font-size: 1.1rem;
    color: #555555;
}

.form-irregular {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.1);
    margin-right: 10%;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-field {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #dddddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #003d7a;
}

.btn-submit-diagonal {
    padding: 1.2rem 3rem;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
    transition: all 0.3s;
}

.btn-submit-diagonal:hover {
    background: #e65525;
    transform: translateX(3px);
}

.trust-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-content-irregular {
    flex: 1.3;
    padding-right: 3rem;
}

.trust-content-irregular h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 1.5rem;
}

.trust-content-irregular p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1.2rem;
}

.trust-image-offset {
    flex: 1;
    background: #e6f2f9;
    transform: rotate(-2deg);
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.12);
}

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

.footer-irregular {
    background: #1a1a1a;
    color: #cccccc;
    padding: 4rem 3rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 5rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section a {
    display: block;
    color: #aaaaaa;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff6b35;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #aaaaaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    font-size: 0.9rem;
}

.thanks-wrapper {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    text-align: center;
}

.thanks-wrapper h2 {
    font-size: 2.8rem;
    color: #003d7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-wrapper p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.1rem 2.5rem;
    background: #003d7a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #002952;
    transform: translateY(-2px);
}

.about-hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 5rem 3rem;
}

.about-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-inner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 1.5rem;
}

.about-hero-inner p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555555;
}

.about-main-content {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.about-section-offset {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.about-section-offset.reverse {
    flex-direction: row-reverse;
}

.about-text-block {
    flex: 1;
}

.about-text-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #003d7a;
    margin-bottom: 1.2rem;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.about-image-block {
    flex: 1;
    background: #e6f2f9;
    min-height: 400px;
}

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

.contact-main-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.contact-layout {
    display: flex;
    gap: 5rem;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 2.5rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: #003d7a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
}

.contact-visual-block {
    flex: 1;
    background: #e6f2f9;
    min-height: 600px;
}

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

.legal-page-wrapper {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.legal-page-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d7a;
    margin-bottom: 2rem;
}

.legal-page-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #003d7a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page-wrapper p,
.legal-page-wrapper li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 1rem;
}

.legal-page-wrapper ul,
.legal-page-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        margin-left: 2%;
        padding: 3rem 2rem;
    }

    .hero-image-diagonal {
        width: 50%;
    }

    .intro-offset {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .trust-image-offset {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-section-offset,
    .about-section-offset.reverse,
    .contact-layout {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        width: 100%;
        box-shadow: none;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-image-diagonal img {
        clip-path: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .nav-offset {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2rem;
    }
}