* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

.nav-links a:hover {
    color: #2c5aa0;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 40px 60px 80px;
}

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

.hero-content p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    height: 600px;
    background-color: #e8f0f7;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5aa0;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2c5aa0;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.intro-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 28px 32px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #4a4a4a;
}

.services-preview {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    align-items: center;
    gap: 80px;
}

.services-left {
    flex: 1;
    background-color: #e8f0f7;
}

.services-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-right {
    flex: 1;
    padding-right: 80px;
}

.services-right h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-right p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.service-list {
    list-style: none;
    margin-bottom: 32px;
}

.service-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 18px;
}

.process-section {
    background-color: #f8f9fa;
    padding: 80px 80px;
    margin: 100px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.process-card {
    flex: 1;
    background-color: #ffffff;
    padding: 36px 32px;
    border-radius: 8px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8f0f7;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.process-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.testimonial-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding-left: 80px;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

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

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

.why-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    align-items: flex-start;
}

.why-left {
    flex: 1;
    padding-left: 80px;
}

.why-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.why-item {
    margin-bottom: 32px;
}

.why-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.why-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.why-right {
    flex: 1;
    background-color: #e8f0f7;
}

.why-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.form-section {
    background-color: #2c5aa0;
    padding: 80px 40px;
    margin: 100px 0;
}

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

.form-container h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 17px;
    color: #e8f0f7;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 40px;
}

.trust-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 16px;
    color: #6c757d;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e9ecef;
    padding: 60px 80px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: #adb5bd;
    margin-bottom: 12px;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #343a40;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 13px;
    color: #495057;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #1a1a1a;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e9ecef;
    color: #1a1a1a;
}

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

.cookie-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #234a88;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c5aa0;
}

.page-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 32px;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-content li {
    margin-bottom: 12px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-box {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 36px;
    transition: all 0.3s;
}

.service-box:hover {
    border-color: #2c5aa0;
    box-shadow: 0 4px 16px rgba(44,90,160,0.1);
}

.service-box h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    color: #2c5aa0;
    font-weight: 700;
    margin: 16px 0;
}

.service-box p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-box ul {
    list-style: none;
    margin: 20px 0;
}

.service-box ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.service-box ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.contact-info {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 40px;
}

.info-block {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.info-block h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.info-block p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5aa0;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2c5aa0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #234a88;
}

@media (max-width: 768px) {
    .hero-split,
    .services-preview,
    .testimonial-section,
    .why-section,
    .intro-section {
        flex-direction: column;
    }

    .nav-container {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

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