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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.main-nav {
    background-color: #1a2332;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e8eaed;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a9eff;
}

.ad-label {
    color: #95a5a6;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hero-section {
    display: flex;
    min-height: 500px;
    background-color: #2c3e50;
    color: #fff;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    min-height: 400px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-block {
    background-color: #fff;
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.services-overview {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #34495e;
    color: #fff;
    padding: 4rem 2rem;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #4a9eff;
}

.trust-item p {
    color: #ecf0f1;
}

.form-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

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

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 2rem;
    color: #555;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    padding: 3rem 2rem;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    color: #7d6608;
    font-size: 0.95rem;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: #95a5a6;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    background-color: #fff;
    padding: 4rem 2rem;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-intro p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.values-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

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

.value-item p {
    color: #555;
}

.approach-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.team-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #fff;
}

.service-detail-block {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    flex-direction: column;
}

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

.detail-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #95a5a6;
}

.detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.detail-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-section {
    background-color: #3498db;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-wrapper .cta-primary {
    background-color: #e74c3c;
}

.cta-wrapper .cta-primary:hover {
    background-color: #c0392b;
}

.contact-info-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-item p {
    color: #555;
    line-height: 1.7;
}

.no-link {
    color: #2c3e50;
    font-weight: 600;
}

.service-area {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.service-area h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-area p {
    margin-bottom: 1rem;
    color: #555;
}

.thanks-section {
    background-color: #fff;
    padding: 4rem 2rem;
    min-height: 500px;
}

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

.thanks-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-wrapper > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.confirmation-box {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.confirmation-box p {
    margin-bottom: 1rem;
    color: #555;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 1rem;
}

.next-steps ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.next-steps ul li a {
    color: #3498db;
    text-decoration: none;
}

.next-steps ul li a:hover {
    text-decoration: underline;
}

.legal-content {
    background-color: #fff;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        flex-direction: row;
    }

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

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .detail-item {
        flex: 1;
        min-width: 250px;
    }

    .service-detail-block {
        flex-direction: row;
        align-items: center;
    }

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

    .detail-image {
        flex: 1;
        height: 350px;
    }

    .detail-content {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        text-align: center;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}