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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
    background-color: #e9ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    border: 2px solid #007bff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.intro-text {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2c3e50;
    text-align: center;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #dee2e6;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #218838;
}

.trust-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.trust-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.trust-text {
    flex: 2;
}

.trust-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
}

.cta-section {
    padding: 5rem 5%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #212529;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 900px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 1.5rem 5%;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-header {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
}

.split-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.split-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.methodology {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.methodology h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.method-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 4px solid #007bff;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.method-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.method-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
}

.values-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
}

.team-brief {
    padding: 5rem 5%;
    background-color: #2c3e50;
    color: #ffffff;
}

.team-brief h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.team-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-brief p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.services-detailed {
    padding: 5rem 5%;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #dee2e6;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.service-main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.service-includes {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
}

.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.cta-services {
    padding: 4rem 5%;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-section {
    padding: 5rem 5%;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-additional .cta-primary {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #28a745;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #495057;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.legal-page {
    padding: 5rem 5%;
}

.legal-intro {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #495057;
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

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

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

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

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

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

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