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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.navigation {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.nav-ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f9fafb;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.content-split {
    display: flex;
    min-height: 500px;
}

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

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-visual {
    flex: 1;
    background-color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

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

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-block {
    background-color: #f0f4f8;
    padding: 100px 40px;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.insight-wrapper p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.insight-wrapper img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

.services-modern {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-modern h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.service-card h3 {
    font-size: 20px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px 25px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 12px 0;
    background-color: #f0f4f8;
    border: 2px solid #0066cc;
    color: #0066cc;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.service-card.selected {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.2);
}

.testimonial-inline {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-style: normal;
    color: #aaa;
}

.cta-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.form-section {
    background-color: #f9fafb;
    padding: 100px 40px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 17px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.trust-indicators {
    background-color: #ffffff;
    padding: 80px 40px;
}

.trust-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-wrapper h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.indicator {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 15px;
}

.indicator p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

.references {
    padding-left: 20px;
}

.references li {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .hero-split,
    .content-split {
        flex-direction: column;
    }

    .hero-content,
    .split-text {
        padding: 50px 30px;
    }

    .hero-visual,
    .split-visual {
        min-height: 300px;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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