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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007bff;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.intro-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 30px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333333;
}

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

.split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.trust-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.pricing-cards {
    padding: 100px 30px;
    background-color: #ffffff;
}

.pricing-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.price-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: #007bff;
    background-color: #f0f7ff;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #333333;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin: 20px 0;
}

.btn-select {
    padding: 14px 28px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #0056b3;
}

.form-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #333333;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

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

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

.final-cta {
    padding: 100px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #007bff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333333;
}

.cookie-content a {
    color: #007bff;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #007bff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0056b3;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

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

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

.about-intro {
    padding: 100px 0;
    background-color: #ffffff;
}

.philosophy-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
}

.team-approach {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333333;
}

.cta-about {
    padding: 100px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.services-detailed {
    padding: 60px 0;
}

.service-block {
    padding: 80px 0;
}

.service-block.reverse {
    background-color: #f8f9fa;
}

.service-block.featured-service {
    background-color: #f0f7ff;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 15px 0 20px;
}

.split-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1a1a1a;
}

.split-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.split-content ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333333;
}

.contact-page {
    padding: 80px 0;
}

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

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 17px;
    color: #333333;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    color: #856404;
}

.contact-cta {
    padding: 80px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.thanks-page {
    padding: 100px 30px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333333;
}

.thanks-service {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.thanks-service p {
    font-size: 17px;
    color: #333333;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.thanks-contact {
    margin: 30px 0;
    font-size: 17px;
    color: #6c757d;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.legal-page {
    padding: 60px 30px 100px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-update {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-container ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333333;
}

.legal-container a {
    color: #007bff;
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table thead {
    background-color: #f8f9fa;
}

.gdpr-table th,
.gdpr-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.gdpr-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.gdpr-table td {
    font-size: 16px;
    color: #333333;
}

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

    .hero-content {
        padding: 60px 30px;
    }

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

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

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

    .split-content {
        padding: 40px 30px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .cards-container {
        flex-direction: column;
    }

    .price-card {
        min-width: 100%;
    }

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

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

    .footer-content {
        flex-direction: column;
    }

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

    .thanks-container {
        padding: 40px 30px;
    }

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

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