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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.site-header {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.main-nav a:hover {
    color: #4a90e2;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(52,73,94,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.3;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
}

.intro-block {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.inline-cta:hover {
    background-color: #357abd;
}

.visual-break {
    padding: 0;
    background-color: #ffffff;
}

.two-column-visual {
    display: flex;
    flex-wrap: wrap;
}

.col-image {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #34495e;
}

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

.col-text {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 60px 50px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.col-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #495057;
}

.services-overview {
    padding: 90px 30px;
    background-color: #ecf0f1;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.services-overview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #34495e;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 20px;
    color: #6c757d;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #357abd;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a2e;
    text-align: center;
}

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

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #229954;
}

.trust-block {
    padding: 70px 30px;
    background-color: #1a1a2e;
    color: #ffffff;
}

.trust-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-block p {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ecf0f1;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

.footer-col {
    flex: 1 1 250px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 25px 30px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

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

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

.thanks-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-content .selected-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content .back-link:hover {
    background-color: #357abd;
}

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

.page-hero h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero .lead {
    font-size: 20px;
    color: #ecf0f1;
    margin: 0;
}

.content-section {
    padding: 70px 30px;
    background-color: #ffffff;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.8;
}

.image-section {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.values-section {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.value-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.value-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.cta-section {
    padding: 70px 30px;
    background-color: #1a1a2e;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

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

.services-detail-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #34495e;
}

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

.service-detail-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.service-cta:hover {
    background-color: #357abd;
}

.process-section {
    padding: 70px 30px;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.process-step p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.contact-info-section {
    padding: 70px 30px;
    background-color: #ffffff;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-block {
    flex: 1 1 250px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-note p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-note a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-page {
    padding: 70px 30px;
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 20px 30px;
    color: #495057;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-style: italic;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 20px;
    }

    .two-column-visual {
        flex-direction: column;
    }

    .col-text {
        padding: 40px 30px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-content {
        padding: 30px 25px;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .values-grid {
        gap: 20px;
    }

    .process-step {
        flex-direction: column;
        gap: 15px;
    }

    .contact-details {
        flex-direction: column;
        gap: 30px;
    }

    .full-width-image {
        height: 350px;
    }
}