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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d6e1e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

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

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

.intro-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    color: #5a6c7d;
    text-align: center;
    line-height: 1.8;
}

.split-features {
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.feature-left {
    flex: 1;
    background-color: #e8eef2;
}

.feature-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-right {
    flex: 1;
    padding: 4rem 5rem;
}

.feature-right h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.feature-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #34495e;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 3.5rem;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    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.12);
}

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

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

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    padding: 0 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 1rem 1.5rem 0.5rem;
}

.service-card .btn-select {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .btn-select:hover {
    background-color: #2980b9;
}

.split-reverse {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
}

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

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

.content-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #d6e1e8;
}

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

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

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

.contact-form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.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: 0.5rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background-color: #3498db;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-image {
    flex: 1;
    background-color: #e8eef2;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.about-content {
    flex: 1;
    padding: 3rem 5rem;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

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

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

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

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

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

.team-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.split-stats {
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
}

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

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

.stat-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.stats-image {
    flex: 1;
    background-color: #d6e1e8;
}

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

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

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

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ecf0f1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 0.7rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-note p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
}

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

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

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

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #95a5a6;
    margin-bottom: 2.5rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-features,
    .split-reverse,
    .about-split,
    .split-stats,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content,
    .feature-right,
    .content-block,
    .about-content,
    .stats-content,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .feature-left,
    .image-block,
    .about-image,
    .stats-image,
    .service-detail-image {
        min-height: 350px;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

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

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