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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: #3498DB;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #2980B9;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid #FFFFFF;
}

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

.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    text-decoration: none;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-items a:hover {
    color: #3498DB;
}

.ad-disclosure {
    font-size: 12px;
    color: #7F8C8D;
    padding: 4px 12px;
    background: #ECF0F1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #F8F9FA;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.hero-content p {
    font-size: 18px;
    color: #5A6C7D;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3498DB;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.intro-section {
    padding: 80px 24px;
    background: #FFFFFF;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1A1A1A;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #5A6C7D;
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefits-split {
    background: #F8F9FA;
}

.split-container {
    display: flex;
    min-height: 600px;
}

.split-container-reverse {
    display: flex;
    min-height: 600px;
}

.split-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h3,
.split-content-left h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    color: #5A6C7D;
    margin-bottom: 24px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #2C3E50;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: 700;
    font-size: 20px;
}

.process-section {
    padding: 100px 24px;
    background: #FFFFFF;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 32px;
    background: #F8F9FA;
    border-radius: 8px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498DB;
    margin-bottom: 16px;
}

.process-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.process-card p {
    color: #5A6C7D;
    line-height: 1.6;
}

.testimonial-split {
    background: #FFFFFF;
}

.testimonial-block {
    background: #F8F9FA;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #3498DB;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2C3E50;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #7F8C8D;
    font-weight: 600;
}

.services-preview {
    padding: 100px 24px;
    background: #F8F9FA;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #5A6C7D;
    margin-bottom: 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.service-card p {
    font-size: 15px;
    color: #5A6C7D;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 24px;
}

.btn-service {
    width: 100%;
    padding: 14px 24px;
    background: #3498DB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980B9;
}

.form-section {
    padding: 80px 24px;
    background: #FFFFFF;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1A1A1A;
}

.selected-service-text {
    text-align: center;
    font-size: 18px;
    color: #27AE60;
    margin-bottom: 40px;
    font-weight: 600;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D5D5D5;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498DB;
}

.why-us-section {
    padding: 100px 24px;
    background: #F8F9FA;
}

.why-us-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1A1A1A;
}

.feature-item {
    margin-bottom: 32px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.feature-item p {
    color: #5A6C7D;
    line-height: 1.7;
}

.why-us-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section {
    padding: 100px 24px;
    background: #2C5F7D;
    text-align: center;
    color: #FFFFFF;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: #FFFFFF;
    color: #2C5F7D;
}

.cta-section .btn-primary:hover {
    background: #ECF0F1;
}

.footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 24px 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

.footer-col p {
    color: #B0B0B0;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

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

.disclaimer {
    font-size: 13px;
    color: #888888;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .split-container-reverse,
    .why-us-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content-left,
    .split-content-right {
        padding: 40px 24px;
    }

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

    .nav-items {
        gap: 16px;
        font-size: 14px;
    }

    .ad-disclosure {
        display: none;
    }

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

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