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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #1a3a4d;
    --accent-color: #e67e22;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px 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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-white);
}

.intro-left h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-right {
    flex: 1;
    overflow: hidden;
}

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

.promise-section {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
}

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

.promise-content h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 3rem;
}

.promise-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.promise-item {
    flex: 1;
    min-width: 280px;
}

.promise-item h3 {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.promise-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-left h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-intro-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-intro-right {
    flex: 1;
    overflow: hidden;
}

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

.services-selection {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.services-selection h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.services-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 4rem 3rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.form-left h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.main-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-now-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.why-now-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-light);
}

.why-now-left h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.why-now-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.why-now-right {
    flex: 1;
    overflow: hidden;
}

.why-now-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

.final-cta h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.main-footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta a {
    display: block;
    padding: 1rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background-color: #d35400;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    flex: 1;
    overflow: hidden;
}

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

.about-right {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-white);
}

.about-right h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2.6rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-left {
    flex: 1;
    overflow: hidden;
}

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

.approach-right {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-white);
}

.approach-right h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.approach-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 2.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 1.2rem;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.6rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.service-detail-card {
    display: flex;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-white);
}

.service-detail-left h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 2rem;
}

.service-detail-right {
    flex: 1;
    overflow: hidden;
}

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

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

.service-detail-card:nth-child(even) .service-detail-left {
    background-color: var(--bg-light);
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-left {
    flex: 1;
    padding: 4rem 4rem;
    background-color: var(--bg-light);
}

.contact-left h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-right {
    flex: 1;
    overflow: hidden;
}

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

.contact-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thanks-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-content {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

.thanks-left {
    flex: 1;
}

.thanks-left h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.thanks-explore {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.thanks-explore h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.explore-links {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.explore-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.explore-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.explore-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.explore-card p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-page li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

    .hero-split,
    .intro-split,
    .services-intro-split,
    .testimonial-split,
    .form-split,
    .why-now-split,
    .about-split,
    .approach-split,
    .contact-split,
    .thanks-split,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .services-intro-left,
    .form-left,
    .why-now-left,
    .about-right,
    .approach-right,
    .contact-left,
    .service-detail-left {
        padding: 3rem 2rem;
    }

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

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

    .services-cards {
        flex-direction: column;
    }

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

    .explore-links {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
