* {
    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-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a:hover {
    color: #3498db;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #34495e;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background-color: #d5dbdd;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-section {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.intro-image {
    flex: 0.8;
    background-color: #d5dbdd;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-split {
    display: flex;
    background-color: #f8f9fa;
}

.services-image {
    flex: 0.8;
    background-color: #d5dbdd;
}

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

.services-content {
    flex: 1.2;
    padding: 80px 60px;
}

.services-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-content > p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #34495e;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.select-service {
    padding: 12px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.approach-section {
    padding: 100px 60px;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.approach-item {
    flex: 1;
    text-align: center;
}

.approach-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background-color: #d5dbdd;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1;
    max-width: 380px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-section {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.form-modal-content {
    background-color: #ffffff;
    margin: 80px auto;
    padding: 50px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.form-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.form-close:hover {
    color: #333;
}

.form-modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.selected-service-display {
    background-color: #ecf0f1;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-weight: 600;
    color: #2c3e50;
}

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

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.7;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-image {
    flex: 1;
    background-color: #d5dbdd;
}

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

.contact-details {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-details h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-page h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-page p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.content-page li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.7;
}

.about-hero {
    padding: 100px 60px;
    background-color: #ecf0f1;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background-color: #d5dbdd;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.services-list {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-list h1 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-item h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
}

.thanks-content {
    max-width: 650px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #34495e;
    line-height: 1.7;
}

.thanks-content a {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .navigation {
        padding: 15px 20px;
    }

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

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

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

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

    .intro-section {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .services-content {
        padding: 50px 30px;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .contact-details {
        padding: 50px 30px;
    }

    .about-content {
        flex-direction: column;
        padding: 60px 30px;
    }

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

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