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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-block {
    background: #f7fafc;
    padding: 80px 24px 0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.hero-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2d3748;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a202c;
}

.hero-image {
    max-width: 1400px;
    margin: 0 auto;
    background: #e2e8f0;
}

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

.intro-block {
    padding: 100px 24px;
    background: #ffffff;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 1;
    background: #edf2f7;
}

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

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

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #cbd5e0;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    padding: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    padding: 0 24px 16px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    padding: 0 24px 24px;
}

.trust-block {
    padding: 100px 24px;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
    line-height: 1.3;
}

.trust-points {
    flex: 1;
}

.trust-item {
    margin-bottom: 36px;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
    background: #edf2f7;
}

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

.form-section {
    padding: 100px 24px;
    background: #2d3748;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    color: #cbd5e0;
    font-size: 18px;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #4a5568;
    border-radius: 6px;
    font-size: 16px;
    background: #ffffff;
    color: #1a202c;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    color: #2d3748;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #edf2f7;
}

.additional-services {
    padding: 100px 24px;
    background: #f7fafc;
}

.additional-services h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 36px;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-item h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-item .price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
}

.disclaimer-block {
    padding: 60px 24px;
    background: #fef5e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #5d4037;
    line-height: 1.8;
}

.main-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
}

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

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background: #2d3748;
}

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

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

    .hero-content p {
        font-size: 16px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}