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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.ad-notice {
    color: #999;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

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

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

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.cta-secondary:hover {
    background-color: #e63946;
    color: #fff;
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: #eee;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
}

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

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

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

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

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

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #ddd;
}

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

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 1.5rem;
}

.service-select {
    align-self: flex-start;
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-select:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-image {
    flex: 1;
    background-color: #ddd;
}

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

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #fff;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-container p {
    margin-bottom: 2rem;
    color: #ccc;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e63946;
}

.submit-btn {
    background-color: #e63946;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

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

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

.testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: #eee;
}

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

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

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

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

.footer-column p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px 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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #e63946;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-text {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #fff;
}

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

.page-hero-text p {
    font-size: 1.3rem;
    color: #ccc;
}

.page-hero-image {
    flex: 1;
    background-color: #ddd;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

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

.about-text {
    flex: 1;
    padding: 4rem;
}

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

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

.mission-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

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

.mission-text {
    flex: 1;
    padding: 4rem;
}

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

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

.mission-image {
    flex: 1;
    background-color: #ddd;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.team-split {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    color: #fff;
}

.team-text {
    flex: 1;
    padding: 4rem;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #ccc;
}

.team-image {
    flex: 1;
    background-color: #ddd;
}

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

.services-detail-section {
    padding: 4rem 0;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #ddd;
}

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

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

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

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 1.5rem;
}

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

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

.service-detail-content li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.cta-section-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.contact-details {
    flex: 1;
    padding: 4rem;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

.contact-image {
    flex: 1;
    background-color: #ddd;
}

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

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

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

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #666;
}

.faq-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.faq-text {
    flex: 1;
    padding: 4rem;
}

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

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

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

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

.faq-image {
    flex: 1;
    background-color: #ddd;
}

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

.thanks-section-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #e63946;
}

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

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.thanks-image {
    flex: 1;
    background-color: #ddd;
}

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

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

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

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

.step-card {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e63946;
}

.step-card p {
    font-size: 1rem;
    color: #555;
}

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

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

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

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

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

.legal-page li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .testimonial-split,
    .about-split,
    .mission-split,
    .team-split,
    .contact-info-split,
    .faq-split,
    .thanks-section-split,
    .service-card,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card:nth-child(even),
    .intro-split.reverse,
    .mission-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

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

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

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

    .values-grid-split {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

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