* {
    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: #fafafa;
}

.ad-notice {
    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);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    min-height: 85vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 500px;
}

.hero-text-block h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 30px;
}

.hero-text-block p {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background: #d0d5dd;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-diagonal {
    padding: 120px 40px;
    background: #ffffff;
    position: relative;
}

.diagonal-container {
    max-width: 800px;
    margin: 0 0 0 15%;
}

.intro-text-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 35px;
    line-height: 1.3;
}

.intro-text-narrow p {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-irregular {
    padding: 100px 40px;
    background: #f8f9fb;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-large {
    flex: 1 1 calc(60% - 30px);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(50% - 30px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(40% - 30px);
    min-width: 300px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e0e5eb;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.cta-select {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}

.cta-select:hover {
    background: #0052a3;
}

.form-section-offset {
    padding: 120px 40px;
    background: linear-gradient(165deg, #e8f0f7 0%, #f5f8fa 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 20%;
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 15px;
}

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #d0d5dd;
    background: #fafafa;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: #ffffff;
}

.form-group input[readonly] {
    background: #e8ecf1;
    cursor: not-allowed;
}

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

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

.trust-section {
    padding: 100px 40px;
    background: #ffffff;
}

.trust-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 30px;
}

.trust-text p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    background: #f5f7fa;
    padding: 35px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 80px 40px 30px;
}

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

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

.footer-main {
    flex: 1.5;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-column p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #0066cc;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-link {
    color: #88b3e0;
    text-decoration: underline;
    font-size: 14px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 20px;
}

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

.thanks-service {
    background: #f5f7fa;
    padding: 20px;
    margin: 30px 0;
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
}

.btn-home {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

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

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e8f0f7 0%, #f5f8fa 100%);
}

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

.about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 22px;
    color: #444;
    line-height: 1.7;
}

.about-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 25px;
}

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

.services-page-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
}

.services-page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.services-page-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-page {
    min-height: 70vh;
    padding: 100px 40px;
    background: #f8f9fb;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

.legal-content li {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 48px;
    }

    .trust-content-split {
        flex-direction: column;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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