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

.ad-notice {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 60px 60px 80px;
    background: #f9fafb;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0a0a0a;
    font-weight: 700;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.hero-image {
    flex: 1;
    background: #ddd;
}

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

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

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

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-left {
    flex: 1;
}

.split-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #0a0a0a;
    font-weight: 700;
}

.split-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.split-right {
    flex: 1;
    background: #e8e8e8;
}

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

.services-preview {
    padding: 100px 40px;
    background: #f5f7f9;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background: #ddd;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-weight: 600;
}

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

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: #2a2a2a;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.form-block {
    flex: 1;
    background: #f9fafb;
    padding: 48px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.disclaimer-section {
    padding: 60px 40px;
    background: #fef9f5;
    border-top: 1px solid #e8e0d8;
    border-bottom: 1px solid #e8e0d8;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
    text-align: center;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 24px 40px;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.cookie-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #555;
    color: #ffffff;
}

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

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

.cookie-link:hover {
    text-decoration: underline;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f9fafb;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-details {
    background: #ffffff;
    padding: 32px;
    border-radius: 6px;
    margin: 32px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: #0a0a0a;
}

.page-header {
    padding: 80px 40px 40px;
    background: #f5f7f9;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.page-header p {
    font-size: 19px;
    color: #4a4a4a;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px 100px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #0a0a0a;
}

.page-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

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

.page-content ul {
    margin: 20px 0 20px 40px;
}

.page-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.contact-split {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px 100px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #0a0a0a;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2a2a2a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
}

.about-hero {
    padding: 100px 40px;
    background: #f9fafb;
}

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #0a0a0a;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background: #ddd;
}

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

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

    .container-split,
    .form-container-split,
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

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

    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .hero-text p {
        font-size: 17px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }

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

    .form-block {
        padding: 32px;
    }

    .services-grid,
    .intro-section,
    .services-preview,
    .form-section,
    .trust-section {
        padding: 60px 20px;
    }
}