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

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.85rem;
    padding-left: 2rem;
    border-left: 1px solid #444;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

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

.hero-image {
    flex: 1;
    background-color: #e8edf2;
    overflow: hidden;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.services-grid {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

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

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

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    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(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 0 1.5rem 1rem;
}

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

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

.form-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

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

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

.form-field input,
.form-field textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

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

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

.trust-image {
    flex: 1;
    background-color: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

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

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.trust-points {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.trust-item span {
    color: #666;
}

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 3rem 2rem;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

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

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

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ecf0f1;
}

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

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    background-color: #f8f9fa;
}

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

.approach-image {
    flex: 1;
    background-color: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.approach-principles {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.principle-item p {
    font-size: 1rem;
    color: #666;
}

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

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.value-card p {
    color: #555;
    line-height: 1.6;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

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

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

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

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

.cta-banner {
    background-color: #3498db;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-banner-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-email {
    color: #2c3e50;
    font-weight: 500;
}

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

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

.thanks-section {
    display: flex;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-confirmation {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-weight: 500;
}

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

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

.thanks-image {
    flex: 1;
    background-color: #e8edf2;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.legal-update {
    color: #888;
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .hero-image {
        min-height: 300px;
    }

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

    .ad-disclosure {
        padding-left: 1rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}