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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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;
}

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

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

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

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

.nav-right a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

.split-intro-left {
    flex: 1;
    height: 70vh;
    overflow: hidden;
}

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

.split-intro-right {
    flex: 1;
    padding: 4rem 5%;
}

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

.split-intro-right p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1rem;
}

.problem-section {
    display: flex;
    background: #f8f9fa;
    padding: 5rem 5%;
}

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.problem-list li {
    font-size: 1.15rem;
    color: #555;
    padding-left: 2rem;
    position: relative;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.problem-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 4rem;
}

.highlight-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
}

.services-split {
    padding: 5rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.services-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

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

.btn-select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

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

.trust-split {
    display: flex;
    background: #2c3e50;
    color: #ffffff;
}

.trust-left {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonial {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-size: 0.95rem;
    opacity: 0.8;
}

.trust-right {
    flex: 1;
    height: auto;
    overflow: hidden;
}

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

.approach-section {
    display: flex;
    align-items: center;
}

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

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

.approach-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-right h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.approach-right p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 1rem 2rem;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.outcomes-split {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.outcomes-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.outcomes-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.outcomes-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.outcome-card {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.outcome-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.outcome-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.form-section-split {
    display: flex;
    padding: 5rem 5%;
}

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

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

.form-left p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.footer-split {
    display: flex;
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-left {
    flex: 1;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

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

.footer-links a {
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.about-hero {
    padding: 5rem 5% 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-split-section {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

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

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

.about-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-right {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

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

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

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

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

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

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-left {
    flex: 1;
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
}

.contact-left h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

.services-intro {
    padding: 5rem 5% 3rem;
    text-align: center;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content .btn-home {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split,
    .split-intro,
    .problem-section,
    .trust-split,
    .approach-section,
    .form-section-split,
    .footer-split,
    .about-split-section,
    .contact-split {
        flex-direction: column;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero h1,
    .services-intro h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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

    .problem-right {
        padding-left: 0;
        margin-top: 2rem;
    }

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

    .footer-right {
        align-items: flex-start;
        margin-top: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}