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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    min-height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.content-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
}

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

.split-text {
    flex: 1;
    padding: 3rem;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
    padding: 2rem;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-grid {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 2rem);
    min-width: 300px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.btn-select-service {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    border-radius: 0 0 12px 12px;
}

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

.btn-primary {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
}

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

.btn-primary-large {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary-large:hover {
    background: #229954;
    transform: translateY(-3px);
}

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

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

.btn-text {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.btn-text:hover {
    color: #229954;
}

.cta-inline {
    padding: 5rem 5%;
    background: #27ae60;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.testimonials-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.booking-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.booking-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.booking-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.benefit-item span {
    color: #27ae60;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
}

.booking-form-container {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.selected-service-info {
    background: #e8f5e9;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
    display: none;
}

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

.selected-service-info p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.final-cta {
    padding: 6rem 5%;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
}

.site-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(39,174,96,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39,174,96,0.5);
}

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie:hover {
    background: #229954;
}

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

.btn-cookie-alt:hover {
    background: rgba(255,255,255,0.1);
}

.page-hero {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.value-props {
    padding: 6rem 5%;
    background: #ffffff;
}

.value-props h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.props-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.prop-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
}

.prop-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.prop-item p {
    color: #555;
    line-height: 1.7;
}

.stats-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.stats-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
}

.approach-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.price-large span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.service-detail-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.service-detail-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-text ul li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-notes {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.pricing-notes h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.notes-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-layout {
    padding: 4rem 5%;
    display: flex;
    gap: 5rem;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-side p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.contact-item p {
    margin: 0;
    color: #555;
}

.contact-item a {
    color: #27ae60;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #888;
}

.contact-expectations {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-expectations h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-expectations p {
    margin-bottom: 1rem;
}

.contact-form-side {
    flex: 1;
}

.contact-alternatives {
    padding: 2rem;
    background: #e8f5e9;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.contact-alternatives p {
    margin: 0;
    line-height: 1.7;
}

.contact-alternatives a {
    color: #27ae60;
    font-weight: 600;
}

.location-info {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.location-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-info p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-page {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 0;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-list {
    text-align: left;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-num {
    background: #27ae60;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.thanks-footnote {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.thanks-footnote p {
    margin: 0;
    color: #888;
}

.thanks-footnote a {
    color: #27ae60;
    text-decoration: none;
}

.thanks-footnote a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #888;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 1.5rem);
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

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

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

    .booking-layout,
    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 5%;
    }

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

    .hero-left p {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .section-header h2,
    .value-props h2,
    .approach-section h2 {
        font-size: 2rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

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

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }

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

    .stats-grid {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.7rem;
    }

    .split-text h2 {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .main-nav {
        padding: 1rem 4%;
    }

    .services-grid,
    .content-split,
    .testimonials-section,
    .booking-section {
        padding: 3rem 4%;
    }
}
