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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
}

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

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

.nav-ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f8fafb;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2a4a5c;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #556b7d;
    max-width: 600px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.intro-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a4a5c;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #556b7d;
    max-width: 650px;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #34495e;
    color: #ffffff;
}

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

.insight-block {
    flex: 1;
}

.insight-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.insight-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.insight-block a {
    color: #3498db;
    text-decoration: none;
}

.insight-block a:hover {
    text-decoration: underline;
}

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

.problem-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

.problem-right img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.problem-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #556b7d;
    max-width: 650px;
}

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

.services-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2a4a5c;
}

.services-header p {
    font-size: 1.15rem;
    color: #556b7d;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a4a5c;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #556b7d;
    line-height: 1.7;
}

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

.btn-select-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    min-height: 50vh;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.testimonial-right {
    background-color: #ecf0f1;
}

.testimonial-content {
    max-width: 550px;
}

.testimonial-content blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    color: #2c3e50;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #34495e;
}

.form-split {
    display: flex;
    min-height: 80vh;
}

.form-left {
    flex: 1;
    background-color: #2a4a5c;
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: 550px;
}

.form-right {
    flex: 1;
    background-color: #f8fafb;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dce4e8;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef9e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c3e50;
}

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

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

.references-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2a4a5c;
}

.references-content ol {
    padding-left: 1.5rem;
}

.references-content li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.references-content a {
    color: #3498db;
    text-decoration: none;
}

.references-content a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    line-height: 1.6;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .problem-split,
    .form-split,
    .testimonial-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .insight-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 768px) {
    .hero-left,
    .intro-left,
    .problem-left,
    .form-left,
    .form-right {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .services-grid {
        padding: 3rem 1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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