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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie {
    background: #007bff;
    color: #fff;
}

.btn-cookie:hover {
    background: #0056b3;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #f9f9f9;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #007bff;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text-content {
    max-width: 500px;
}

.hero-text-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

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

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 60px;
    background: #f8f9fa;
}

.intro-block {
    flex: 1;
    max-width: 550px;
}

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

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

.intro-image-offset {
    flex: 1;
    position: relative;
    background: #ddd;
}

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

.story-section {
    padding: 80px 60px;
    background: #fff;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.story-container p {
    font-size: 18px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.services-grid {
    padding: 100px 60px;
    background: #f4f4f4;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 15px;
    line-height: 1.6;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 0 20px 15px;
}

.btn-select-service {
    margin: 0 20px 20px;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0056b3;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

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

.form-intro p {
    font-size: 16px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-field input,
.form-field select {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    padding: 14px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0056b3;
}

.trust-section {
    padding: 80px 60px;
    background: #fff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
    background: #2c2c2c;
    color: #fff;
    gap: 60px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-split h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.footer-split a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-split a:hover {
    color: #fff;
}

.disclaimer-footer {
    background: #1a1a1a;
    padding: 30px 60px;
    text-align: center;
}

.disclaimer-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .service-card {
        width: 100%;
    }

    .footer-split {
        flex-direction: column;
        padding: 40px 30px;
    }
}