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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
    align-items: center;
}

.hero-text-side {
    flex: 1;
    padding-right: 40px;
}

.hero-text-side h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text-side p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #27ae60;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.split-reverse,
.split-content {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-side p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.image-side {
    flex: 1;
    background-color: #f8f9fa;
}

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

.centered-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

.section-intro {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.service-card-split {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

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

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.principle-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.principle-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

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

.service-detail-section {
    padding: 60px 40px;
}

.service-detail-section.alt-bg {
    background-color: #f8f9fa;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

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

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

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

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

.location-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.location-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.why-contact-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.why-contact-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.reason-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.reason-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content > p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.thanks-details p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-selected {
    font-weight: 600;
    color: #27ae60;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.next-steps-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.next-steps-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #27ae60;
}

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

.step-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-content,
    .service-card-split,
    .service-detail-card,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

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

    .principles-grid,
    .reasons-grid,
    .steps-grid {
        flex-direction: column;
    }
}