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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5490;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1a5490;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a5490;
}

.hero-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

.content-split-left,
.content-split-right {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
}

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

.split-image {
    flex: 1;
    background-color: #e8f1f8;
}

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

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

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a5490;
    line-height: 1.3;
}

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

.ref-link {
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.0625rem;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.25rem;
}

.services-section {
    background-color: #f9f9f9;
    padding: 100px 30px;
}

.services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.services-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.services-header-center p {
    font-size: 1.25rem;
    color: #666;
}

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

.service-item {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a5490;
}

.service-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 25px;
}

.btn-select-service {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.testimonial-section {
    background-color: #1a5490;
    padding: 100px 30px;
    color: #ffffff;
}

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

.testimonial-wrapper h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #ffffff;
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 1rem;
    opacity: 0.9;
}

.form-section {
    background-color: #f9f9f9;
    padding: 100px 30px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d2d2d;
    font-size: 1rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-row input[readonly] {
    background-color: #f4f4f4;
    cursor: not-allowed;
}

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

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

.references-section {
    background-color: #e8f1f8;
    padding: 60px 30px;
}

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

.references-content h3 {
    font-size: 1.875rem;
    margin-bottom: 25px;
    color: #1a5490;
}

.references-content ol {
    padding-left: 25px;
}

.references-content ol li {
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.references-content a {
    color: #1a5490;
    text-decoration: none;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    padding: 60px 30px;
    border-top: 3px solid #ffc107;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 70px 30px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-size: 1.375rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9375rem;
    color: #ccc;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 3px solid #1a5490;
    padding: 25px;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

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

.cookie-inner p {
    flex: 1;
    font-size: 0.9375rem;
    color: #2d2d2d;
    line-height: 1.6;
}

.cookie-inner a {
    color: #1a5490;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-btn {
    background-color: #1a5490;
    color: #ffffff;
}

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

.reject-btn {
    background-color: #6c757d;
    color: #ffffff;
}

.reject-btn:hover {
    background-color: #5a6268;
}

@media (max-width: 1024px) {
    .hero-split-section {
        flex-direction: column;
    }

    .hero-right {
        min-height: 400px;
    }

    .content-split-left,
    .content-split-right {
        flex-direction: column;
        padding: 60px 20px;
    }

    .split-text {
        padding: 40px 20px;
    }

    .split-image {
        min-height: 400px;
    }

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

    .service-image-box {
        min-height: 350px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 0.875rem;
    }

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

    .hero-left {
        padding: 50px 30px;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .services-header-center h2 {
        font-size: 2.25rem;
    }

    .service-content {
        padding: 30px;
    }

    .form-wrapper {
        padding: 40px 30px;
    }
}