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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.btn-cookie {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #357abd;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cookie-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    border: 1px solid #e0e0e0;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
}

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

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

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

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.btn-primary {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

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

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

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

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

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

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

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.problem-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 6rem 2rem;
}

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

.problem-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-left: 4px solid #4a90e2;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

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

.solution-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

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

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.solution-visual {
    flex: 1;
    background-color: #e0e7ed;
}

.solution-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

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

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

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

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.service-details span {
    display: flex;
    align-items: center;
}

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

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

.btn-select-service:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

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

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ecf0f1;
}

.testimonial-content blockquote {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 5px solid #4a90e2;
}

.testimonial-content blockquote:last-child {
    margin-bottom: 0;
}

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

.testimonial-content cite {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

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

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

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.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,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

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

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4a90e2;
}

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

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4a90e2;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #4a90e2;
}

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

.selected-service-display {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #4a90e2;
}

.selected-service-display h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

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

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-section {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #4a90e2;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

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

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

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

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

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

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

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

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

    .hero-left,
    .intro-content,
    .solution-text {
        padding: 3rem 2rem;
    }

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

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

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .solution-text h2 {
        font-size: 2rem;
    }

    .services-section h2,
    .problem-section h2 {
        font-size: 2.2rem;
    }

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

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

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

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

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