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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

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

.navigation {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    padding: 60px 20px;
    background: var(--light-bg);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.cta-primary:hover {
    background: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
}

.split-section {
    padding: 80px 20px;
}

.split-section.reverse {
    background: var(--light-bg);
}

.split-section .split-content,
.split-section .split-image {
    flex: 1;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-content p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.split-section:not(.reverse) .hero-content,
.split-section:not(.reverse) .service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-section.reverse .hero-content,
.split-section.reverse .service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.service-preview {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: #fff;
}

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

.testimonial-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

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

.author {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
}

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

.step p {
    font-size: 15px;
    color: #666;
}

.form-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

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

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

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: #666;
}

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.footer {
    background: #1a252f;
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    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: 20px;
}

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

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

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

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

.btn-accept {
    background: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-header {
    padding: 60px 20px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

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

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

.services-intro {
    padding: 60px 20px;
    background: #fff;
}

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

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail {
    padding: 60px 20px;
}

.service-detail.reverse {
    background: var(--light-bg);
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail.reverse .service-detail-container {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.additional-services {
    padding: 60px 20px;
    background: var(--light-bg);
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.additional-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.additional-container p {
    font-size: 17px;
    margin-bottom: 40px;
}

.additional-grid {
    display: flex;
    gap: 20px;
}

.additional-item {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.additional-item p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.cta-section {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
}

.cta-section .cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

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

.info-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.location-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.directions {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
}

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.direction-item p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.selected-service {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    background: var(--light-bg);
    padding: 30px 20px;
    border-radius: 8px;
}

.step-item .step-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.step-item p {
    font-size: 14px;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-container ul {
    margin: 15px 0 15px 30px;
}

.legal-container li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-container a {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.team-section {
    padding: 60px 20px;
    background: #fff;
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.team-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.value-points {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 25px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    color: #666;
}

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

    .hero-content,
    .split-section .hero-content,
    .split-section.reverse .hero-content,
    .service-detail-container,
    .split-section.reverse .service-detail-container {
        flex-direction: column;
    }

    .hero-text h1,
    .page-header h1 {
        font-size: 32px;
    }

    .service-preview,
    .testimonial-grid,
    .footer-content,
    .additional-grid,
    .contact-grid,
    .directions,
    .steps-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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