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

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #3498db;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background-color: #e8eaf6;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #5568d3;
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.split-image {
    flex: 1;
    background-color: #e3f2fd;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s;
}

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

.service-icon {
    margin-bottom: 20px;
    background-color: #f3e5f5;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
}

.trust-section {
    padding: 80px 0;
    background: #f0f4f8;
}

.additional-services {
    padding: 80px 0;
    background: #ffffff;
}

.additional-services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-two-col {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-detailed {
    flex: 1;
    min-width: 300px;
}

.service-detailed img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff3e0;
}

.service-detailed h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detailed p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.form-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.consultation-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.consultation-form button[type="submit"] {
    width: 100%;
    background: #667eea;
    color: #ffffff;
}

.disclaimer {
    padding: 40px 0;
    background: #f0f4f8;
}

.disclaimer p {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    background: #667eea;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #5568d3;
}

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

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

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h1 {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 20px;
    color: #666;
    margin-bottom: 16px;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #2c3e50;
}

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

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

    .services-two-col {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .nav {
        width: 100%;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}