* {
    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: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #0d47a1;
}

.nav-items {
    display: flex;
    gap: 35px;
}

.nav-items a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: #0d47a1;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content-offset {
    width: 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0d47a1;
    font-weight: 800;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0d47a1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1565c0;
}

.hero-visual-block {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    height: 70%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e3f2fd;
}

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

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    width: 55%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.intro-card-right {
    width: 40%;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-card-right img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #e1f5fe;
}

.intro-card-right h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0d47a1;
}

.intro-card-right p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.services-staggered {
    padding: 80px 5% 100px;
    background: #fafafa;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    padding-left: 20px;
    border-left: 5px solid #0d47a1;
}

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

.service-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-wide {
    width: calc(65% - 15px);
    flex-direction: row;
}

.service-narrow {
    width: calc(35% - 15px);
}

.service-centered {
    width: calc(50% - 15px);
    margin: 0 auto;
}

.service-wide .service-visual {
    width: 45%;
    min-height: 300px;
}

.service-narrow .service-visual,
.service-centered .service-visual {
    width: 100%;
    height: 200px;
}

.service-visual {
    background-color: #e3f2fd;
}

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

.service-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-wide .service-details {
    width: 55%;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0d47a1;
}

.service-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 14px 30px;
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1565c0;
}

.form-section-offset {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 800px;
    margin-left: 10%;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0d47a1;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1565c0;
}

.trust-block {
    padding: 100px 5%;
    background: white;
}

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d47a1;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 25px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    padding: 25px;
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    color: white;
    font-size: 14px;
    flex: 1;
}

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

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

.btn-accept {
    background: #0d47a1;
    color: white;
}

.btn-accept:hover {
    background: #1565c0;
}

.btn-reject {
    background: #666;
    color: white;
}

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

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

.thanks-box {
    max-width: 700px;
    text-align: center;
    background: #f9f9f9;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: #0d47a1;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-box .cta-primary {
    margin-top: 30px;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0d47a1;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.about-intro {
    padding: 80px 5%;
    background: #f5f7fa;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-visual {
    padding: 60px 5%;
}

.about-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e3f2fd;
}

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

.values-section {
    padding: 80px 5%;
}

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

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0d47a1;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0d47a1;
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-visual-block {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 400px;
    }

    .intro-offset {
        flex-direction: column;
    }

    .intro-narrow,
    .intro-card-right {
        width: 100%;
    }

    .service-wide,
    .service-narrow,
    .service-centered {
        width: 100%;
    }

    .service-wide {
        flex-direction: column;
    }

    .service-wide .service-visual,
    .service-wide .service-details {
        width: 100%;
    }

    .trust-grid,
    .values-grid,
    .footer-main {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 20px;
        font-size: 14px;
    }

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

    .section-title-left {
        font-size: 32px;
    }

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