* {
    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: #2c3e50;
    overflow-x: hidden;
}

.header-asymmetric {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.brand-block {
    flex: 1;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5298;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-offset a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-offset a:hover {
    color: #2a5298;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 2rem;
    padding: 0 2rem;
}

.hero-visual {
    flex: 2;
    position: relative;
    border-radius: 0 60px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.hero-text-offset {
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #e8f0f8;
    font-weight: 300;
}

.hero-side-panel {
    flex: 1;
    background: #f4f7fa;
    padding: 2.5rem;
    border-radius: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-side-panel h3 {
    font-size: 1.6rem;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.benefits-compact {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-compact li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e1e8ed;
    color: #34495e;
    font-weight: 500;
}

.benefits-compact li:last-child {
    border-bottom: none;
}

.cta-link {
    display: inline-block;
    background: #2a5298;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #1c3663;
}

.intro-offset {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.intro-narrow {
    max-width: 720px;
    margin-left: 15%;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 300;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-header-left h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.service-card.medium {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
}

.service-card.small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.service-image-inline {
    width: 100%;
    height: 140px;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background: #2a5298;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1c3663;
}

.trust-section-diagonal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content-offset {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.trust-visual {
    flex: 1;
    height: 400px;
    border-radius: 0 80px 0 80px;
    object-fit: cover;
}

.process-stacked {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-block {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 700px;
    position: relative;
}

.process-block.offset-right {
    margin-left: auto;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #2a5298;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.process-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.form-section-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-visual-bg {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-visual-text {
    color: #ffffff;
}

.form-visual-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-visual-text p {
    font-size: 1.2rem;
    font-weight: 300;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 4rem;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

.submit-btn {
    width: 100%;
    background: #2a5298;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1c3663;
}

.values-offset {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 300px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.value-item.highlight {
    background: #2a5298;
    color: #ffffff;
}

.value-item.highlight h4 {
    color: #ffffff;
}

.value-item.highlight p {
    color: #e8f0f8;
}

.value-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1c2833;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c3e50;
}

.cookie-content a {
    color: #2a5298;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #2a5298;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1c3663;
}

.cookie-btn.reject {
    background: #e8f0f8;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #d1dce8;
}

.thanks-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.back-home-btn {
    display: inline-block;
    background: #2a5298;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-home-btn:hover {
    background: #1c3663;
}

.page-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.content-section {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
}

.service-detail h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 1rem;
}

.service-detail .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-info-item {
    flex: 1 1 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact-info-item h3 {
    font-size: 1.4rem;
    color: #2a5298;
    margin-bottom: 1rem;
}

.contact-info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

    .form-section-split {
        flex-direction: column;
    }

    .nav-offset {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header-left h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .nav-offset {
        flex-wrap: wrap;
    }
}