* {
    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-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.75rem;
    color: #6c757d;
    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: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 600px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.value-section {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.value-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 0 4rem;
}

.value-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-preview-split {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

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

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

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

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.process-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 0;
}

.process-content {
    flex: 1.2;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.process-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step p {
    color: #ecf0f1;
    font-size: 0.95rem;
}

.process-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.testimonials-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.client-name {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

.consultation-form-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    margin-top: 5rem;
}

.final-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    overflow: hidden;
}

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

.final-content {
    flex: 1;
    padding: 4rem;
}

.final-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.final-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

.header-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.header-content p {
    font-size: 1.2rem;
    color: #555;
}

.header-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 500px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.expertise-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.expertise-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    overflow: hidden;
}

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

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.expertise-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.commitment-section {
    background-color: #2c3e50;
    padding: 5rem 2rem;
}

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

.commitment-text {
    margin-bottom: 3rem;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.commitment-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.commitment-cta {
    text-align: center;
}

.services-header {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-price {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 1rem;
}

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

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

.services-cta-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin-top: 5rem;
}

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

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

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-header {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-description {
    padding: 2rem;
    background-color: #f8f9fa;
}

.location-description p {
    font-size: 0.95rem;
    color: #555;
}

.directions-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.directions-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.directions-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.direction-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.direction-item p {
    font-size: 0.95rem;
    color: #555;
}

.thanks-section {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.thanks-content {
    flex: 1.5;
}

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    background-color: #e9ecef;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.legal-page .last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

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

    .hero-split,
    .value-section,
    .process-split,
    .final-split,
    .page-header-split,
    .about-story-split,
    .expertise-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .process-content,
    .final-content,
    .header-content,
    .story-content,
    .expertise-content,
    .service-detail-content,
    .contact-info,
    .thanks-content {
        padding: 2rem;
    }

    .hero-content h1,
    .header-content h1,
    .contact-header h1,
    .services-header h1 {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-split {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}