* {
    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;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ad-disclosure {
    background-color: #F8F9FA;
    color: #6C757D;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #DEE2E6;
}

.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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.5rem;
    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;
}

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #F8F9FA;
}

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

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #4A5568;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498DB;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
}

.hero-image {
    height: 100%;
    overflow: hidden;
}

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

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

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

.split-image-left,
.split-image-right,
.split-content-left,
.split-content-right {
    flex: 1;
}

.split-image-left,
.split-image-right {
    overflow: hidden;
}

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

.split-content-left,
.split-content-right {
    padding: 80px 60px;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1A252F;
}

.split-content-left p,
.split-content-right p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4A5568;
}

.why-section,
.approach-section {
    margin: 80px 0;
}

.approach-list {
    margin-top: 30px;
}

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

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2C3E50;
}

.approach-item p {
    font-size: 1.05rem;
    color: #4A5568;
}

.services-preview {
    background-color: #F8F9FA;
    padding: 80px 20px;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1A252F;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #4A5568;
}

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

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

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #4A5568;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 25px;
    background-color: #3498DB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1A252F;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4A5568;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    padding: 15px 20px;
    background-color: #E8F5E9;
    border-left: 4px solid #27AE60;
    color: #2C3E50;
    font-weight: 500;
}

.form-wrapper {
    flex: 1;
}

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

.selected-service-display {
    background-color: #E3F2FD;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    text-align: center;
}

.selected-service-display.active {
    background-color: #C8E6C9;
}

.selected-service-display p {
    margin: 0;
    font-weight: 600;
    color: #2C3E50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CED4DA;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #27AE60;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-button:disabled {
    background-color: #95A5A6;
    cursor: not-allowed;
}

.trust-section {
    padding: 60px 20px;
    background-color: #F8F9FA;
}

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

.trust-content-center h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.trust-content-center p {
    font-size: 1rem;
    color: #6C757D;
    line-height: 1.7;
}

.main-footer {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.95rem;
    color: #BDC3C7;
    line-height: 1.6;
}

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

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

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

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

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

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95A5A6;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #BDC3C7;
}

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

.footer-bottom p {
    color: #95A5A6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 25px 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;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    color: #2C3E50;
}

.cookie-content a {
    color: #3498DB;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    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: #E0E0E0;
    color: #2C3E50;
}

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

.page-hero {
    background-color: #2C3E50;
    padding: 80px 20px;
    text-align: center;
}

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

.hero-content-center h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.hero-content-center p {
    font-size: 1.2rem;
    color: #BDC3C7;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content {
    padding: 60px;
    background-color: #FFFFFF;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #4A5568;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #4A5568;
    line-height: 1.6;
}

.service-pricing-box {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.price-label {
    font-size: 1rem;
    color: #6C757D;
    margin-bottom: 10px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27AE60;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.9rem;
    color: #6C757D;
    margin: 0;
}

.service-detail-image {
    overflow: hidden;
}

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

.about-story,
.about-approach {
    margin: 80px 0;
}

.team-section {
    padding: 80px 20px;
    background-color: #F8F9FA;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: calc(25% - 25px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2C3E50;
}

.team-role {
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2C3E50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

.value-item p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
}

.contact-main {
    padding: 60px 20px;
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.contact-info-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #4A5568;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C3E50;
}

.contact-item p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.7;
}

.email-display {
    font-weight: 500;
    color: #2C3E50;
}

.response-info {
    margin-top: 40px;
    padding: 25px;
    background-color: #E3F2FD;
    border-radius: 8px;
}

.response-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C3E50;
}

.response-info p {
    font-size: 1rem;
    color: #4A5568;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 500px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.9);
    padding: 30px 50px;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.location-details {
    padding: 80px 20px;
    background-color: #F8F9FA;
}

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

.location-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.location-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #4A5568;
    line-height: 1.7;
}

.directions {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.direction-item {
    flex: 1;
}

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

.direction-item p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #F8F9FA;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: #E8F5E9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #6C757D;
}

.service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #27AE60;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2C3E50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498DB;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2C3E50;
}

.step-content p {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #3498DB;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #E0E0E0;
    color: #2C3E50;
}

.btn-secondary:hover {
    background-color: #BDBDBD;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2C3E50;
}

.last-updated {
    color: #6C757D;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2C3E50;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4A5568;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    color: #4A5568;
    line-height: 1.7;
}

.legal-content a {
    color: #3498DB;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980B9;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container,
    .form-container-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

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

    .service-card {
        width: calc(50% - 15px);
    }

    .team-member {
        width: calc(50% - 15px);
    }

    .directions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

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

    .section-header-center h2 {
        font-size: 2rem;
    }

    .service-card,
    .team-member {
        width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}