* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.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;
    max-width: 50%;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    max-width: 50%;
    background-color: #e8eef2;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image-left,
.split-image-right {
    flex: 1;
    display: flex;
    max-width: 50%;
    background-color: #e8eef2;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content-left p,
.split-content-right p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.info-section,
.process-section,
.approach-section,
.commitment-section {
    padding: 60px 0;
}

.process-steps {
    margin-top: 32px;
}

.step {
    margin-bottom: 32px;
}

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

.step p {
    font-size: 16px;
    color: #555;
}

.services-preview {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8eef2;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #666;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 16px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-info {
    flex: 1;
    padding-right: 60px;
    max-width: 50%;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.form-info p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.form-container {
    flex: 1;
    max-width: 50%;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

.selected-service-display .service-name {
    color: #27ae60;
    font-size: 18px;
    font-weight: 600;
}

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

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

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

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

.submit-button {
    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 ease;
}

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

.trust-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #27ae60;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

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

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ffffff;
}

.page-hero .hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 80px 0;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

.approach-section {
    padding: 80px 0;
}

.expertise-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.expertise-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.expertise-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-list {
    list-style: none;
    margin-top: 24px;
}

.commitment-list li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.commitment-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-detailed {
    padding: 40px 0;
}

.service-detail-item {
    margin-bottom: 60px;
}

.service-features {
    list-style: none;
    margin-top: 24px;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    margin: 24px 0;
    padding: 16px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.service-price .price-label {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}

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

.form-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-content-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-content-centered p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
}

.form-content-centered .form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.contact-item .contact-detail {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.response-info {
    margin-top: 32px;
    padding: 24px;
    background-color: #e8f5e9;
    border-radius: 8px;
}

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

.response-info p {
    font-size: 15px;
    color: #555;
}

.location-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.location-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.service-areas {
    padding: 80px 40px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 32px;
}

.area-item {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.area-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #27ae60;
}

.area-item p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

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

.next-steps ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.8;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

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

    .hero-content,
    .hero-image,
    .split-content-left,
    .split-content-right,
    .split-image-left,
    .split-image-right,
    .form-info,
    .form-container {
        max-width: 100%;
    }

    .hero-content,
    .split-content-left,
    .split-content-right {
        padding: 40px 24px;
    }

    .hero-image,
    .split-image-left,
    .split-image-right {
        min-height: 300px;
    }

    .nav-container {
        padding: 0 20px;
    }

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

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

    .form-info {
        padding-right: 0;
        margin-bottom: 32px;
    }

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

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

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