* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2332;
    --secondary: #2d4263;
    --accent: #00adb5;
    --light: #f8f9fa;
    --text: #2c3e50;
    --border: #e0e6ed;
    --success: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.navbar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: var(--accent);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: white;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: var(--text);
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,173,181,0.3);
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

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

.split-image,
.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fa;
}

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-content ul {
    list-style: none;
    margin: 30px 0;
}

.split-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.split-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.text-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.8;
}

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

.services-preview {
    background: var(--light);
    padding: 80px 30px;
    text-align: center;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary);
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.services-grid-split {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: var(--primary);
    font-weight: 700;
}

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

.service-card .price {
    font-size: 28px;
    color: var(--accent);
    font-weight: 700;
    margin: 20px;
}

.service-card .select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card .select-service:hover {
    background: #009ba3;
}

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

.benefit-list {
    list-style: none;
    margin: 30px 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
}

.form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: var(--accent);
}

.submit-button {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #009ba3;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 30px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--accent);
    color: white;
}

.cookie-btn.accept:hover {
    background: #009ba3;
}

.cookie-btn.reject {
    background: #e2e8f0;
    color: var(--text);
}

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

.page-hero {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 80px 30px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #cbd5e0;
}

.about-intro,
.approach-section {
    padding: 80px 0;
    background: white;
}

.values-section {
    background: var(--light);
    padding: 80px 30px;
    text-align: center;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary);
}

.values-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.expertise-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 30px;
    text-align: center;
}

.expertise-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary);
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.cta-section {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 80px 30px;
}

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

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

.contact-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.contact-split {
    display: flex;
    gap: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-info-block,
.contact-image-block {
    flex: 1;
    padding: 60px 50px;
}

.contact-image-block {
    padding: 0;
    background: var(--secondary);
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 10px;
}

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

.contact-item .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 5px;
    color: #6c757d;
}

.contact-cta {
    text-align: center;
    padding: 80px 30px;
    background: var(--light);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.services-detail {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-detail-card {
    background: white;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.service-split {
    display: flex;
    gap: 50px;
}

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

.service-info {
    flex: 1;
    padding: 60px 50px;
}

.service-image {
    flex: 1;
    background: #f4f7fa;
}

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

.service-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-price {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

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

.service-info h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--primary);
}

.service-info ul {
    list-style: none;
    margin: 20px 0;
}

.service-info li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

.service-info li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--accent);
    font-size: 20px;
}

.service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #009ba3;
}

.services-info {
    background: var(--light);
    padding: 80px 30px;
    text-align: center;
}

.services-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
}

.info-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.info-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-info {
    margin: 40px 0;
}

.selected-service-box {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.selected-service-box .service-name {
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
}

.thanks-next {
    margin: 60px 0;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary);
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: var(--primary);
    color: white;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 10px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

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

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .split-image,
    .split-content,
    .service-info {
        padding: 40px 30px;
    }

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

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

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

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

    .form-section {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}