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

.nav-container {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding-right: 3rem;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.services-overview {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-card {
    flex: 0 1 350px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background-color: #ecf0f1;
}

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #34495e;
}

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

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

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

.process-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.process-content {
    flex: 1;
}

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

.process-step {
    margin-bottom: 2rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.process-step p {
    color: #34495e;
}

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

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

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

.testimonial-item {
    flex: 0 1 400px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-item p {
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #34495e;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    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: #3498db;
}

.form-container button {
    width: 100%;
}

.why-choose {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.features-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-large {
    flex: 1 1 calc(60% - 1rem);
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.feature-small {
    flex: 1 1 calc(40% - 1rem);
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.feature-large h3,
.feature-small h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.feature-large p,
.feature-small p {
    color: #ecf0f1;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

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

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5f7f;
    color: #95a5a6;
    font-size: 0.875rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

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

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #ecf0f1;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.about-content p {
    margin-bottom: 1rem;
    color: #34495e;
    font-size: 1.05rem;
}

.about-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.expertise-item p {
    color: #34495e;
}

.values-section {
    padding: 5rem 2rem;
}

.values-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.values-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-narrow p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.team-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.team-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid #e1e8ed;
    align-items: center;
}

.service-detail-split:last-child {
    border-bottom: none;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #34495e;
    font-size: 1.05rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1.5rem;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #ecf0f1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.pricing-note {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.pricing-note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-note-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-detail p {
    color: #34495e;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.map-caption {
    padding: 1rem;
    background-color: #f8f9fa;
    margin-top: 1rem;
    border-radius: 4px;
}

.map-caption p {
    color: #34495e;
    font-size: 0.95rem;
}

.service-area {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.service-area h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.service-area-content > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #34495e;
}

.cities-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.city-column ul {
    list-style: none;
    padding: 0;
}

.city-column li {
    padding: 0.5rem 0;
    color: #34495e;
    position: relative;
    padding-left: 1.5rem;
}

.city-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.faq-item p {
    color: #34495e;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #34495e;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #7f8c8d;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

.thanks-next-steps ol {
    margin-left: 2rem;
    color: #34495e;
}

.thanks-next-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-split,
    .process-split,
    .about-split,
    .team-layout,
    .contact-layout,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-left,
    .process-image,
    .about-image,
    .team-image,
    .service-detail-image {
        padding-right: 0;
    }

    .hero-right,
    .about-image,
    .team-image,
    .service-detail-image {
        flex: 0 0 300px;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .features-asymmetric {
        flex-direction: column;
    }

    .feature-large,
    .feature-small {
        flex: 1 1 100%;
    }

    .cities-list {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .expertise-item {
        flex: 1 1 100%;
    }
}