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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

.nav-brand a {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    border: 1px solid #e0e6ed;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2332;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.intro-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

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

.intro-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-benefits {
    background-color: #f8fafb;
}

.benefit-item {
    display: flex;
    min-height: 450px;
}

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

.benefit-image {
    flex: 1;
    overflow: hidden;
}

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

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

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #1a2332;
}

.benefit-text p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-preview {
    padding: 90px 60px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

.services-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a2332;
}

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

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
    margin: 0 24px 20px;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.trust-section {
    padding: 90px 60px;
    background-color: #f8fafb;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2332;
}

.trust-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 50px;
    line-height: 1.8;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.cta-section {
    padding: 100px 60px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 35px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 400;
    color: #95a5a6;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a2332;
}

.service-display {
    font-weight: 600;
    color: #3498db;
    padding: 12px;
    background-color: #f8fafb;
    border-radius: 4px;
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a2332;
    color: #bdc3c7;
    padding: 60px 60px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 8px;
}

.disclaimer-footer {
    font-size: 12px;
    color: #95a5a6;
    max-width: 800px;
    margin: 12px auto 0;
    line-height: 1.6;
}

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

.content-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2332;
}

.content-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a2332;
}

.content-page h3 {
    font-size: 22px;
    margin: 30px 0 12px;
    color: #2c3e50;
}

.content-page p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin: 16px 0 16px 30px;
    color: #5a6c7d;
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    min-height: 500px;
    margin: 80px 0;
}

.contact-info {
    flex: 1;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 70px 60px;
}

.contact-info h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item h3 {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e8f0f2;
}

.services-list {
    margin: 80px 0;
}

.service-detail {
    background-color: #f8fafb;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 28px;
    color: #1a2332;
    margin-bottom: 16px;
}

.service-detail p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail .service-price {
    font-size: 26px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 20px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-content .btn-primary {
    margin-top: 30px;
}

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

    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 15px;
    }

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

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

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

    .trust-stats {
        gap: 40px;
    }

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

    .content-page {
        padding: 0 30px;
    }
}