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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #27ae60;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

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

.hero-image {
    flex: 1;
    background-color: #e8f5e9;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f0f0f0;
    min-height: 450px;
}

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

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

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

.intro-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-main {
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 420px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    background-color: #e8e8e8;
    height: 260px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

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

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

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 13px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.form-section-split {
    display: flex;
    background-color: #ffffff;
}

.form-content {
    flex: 1;
    background-color: #27ae60;
    color: #ffffff;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 18px;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.references-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.references-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.references-section p {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.reference-list {
    list-style: none;
}

.reference-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.reference-list a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    margin-right: 8px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
    gap: 30px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    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;
}

.page-header-split {
    display: flex;
    min-height: 400px;
}

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

.header-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.header-content p {
    font-size: 19px;
    color: #555;
}

.header-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.about-content-split {
    display: flex;
    padding: 70px 40px;
    background-color: #ffffff;
    gap: 50px;
}

.about-text {
    flex: 1.2;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

.values-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 70px 40px;
    gap: 50px;
}

.values-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

.values-content {
    flex: 1.2;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.values-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-step {
    flex: 1;
    min-width: 230px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

.page-intro {
    text-align: center;
    padding: 70px 40px;
    background-color: #f8f9fa;
}

.page-intro h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-intro p {
    font-size: 19px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 50px 40px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-pricing-info {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-pricing-info strong {
    font-size: 18px;
    color: #27ae60;
}

.service-cta-section {
    text-align: center;
    padding: 70px 40px;
    background-color: #27ae60;
    color: #ffffff;
}

.service-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
    padding: 70px 40px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

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

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

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

.thanks-section {
    display: flex;
    min-height: 500px;
    padding: 70px 40px;
    gap: 60px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.thanks-content .cta-primary {
    margin-top: 20px;
}

.thanks-image {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
}

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

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

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #27ae60;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .page-header-split,
    .about-content-split,
    .values-split,
    .service-detail-card,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .form-content,
    .form-container,
    .header-content,
    .about-text,
    .values-content,
    .service-detail-content,
    .contact-info,
    .thanks-content {
        padding: 40px 30px;
    }

    .hero-content h1,
    .header-content h1,
    .contact-info h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

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

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

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