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

:root {
    --color-primary: #2563eb;
    --color-secondary: #1e40af;
    --color-accent: #0ea5e9;
    --color-dark: #1e293b;
    --color-light: #f8fafc;
    --color-border: #e2e8f0;
    --color-text: #334155;
    --color-text-light: #64748b;
    --transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept {
    background: var(--color-primary);
    color: white;
}

.btn-accept:hover {
    background: var(--color-secondary);
}

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

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

.header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
}

.nav {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.ad-label {
    font-size: 12px;
    color: var(--color-text-light);
    padding: 6px 12px;
    background: var(--color-light);
    border-radius: 4px;
    white-space: nowrap;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--color-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: var(--color-border);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

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

.intro-image {
    flex: 1;
    background: var(--color-border);
}

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

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

.intro-content h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 28px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.benefits-section {
    padding: 100px 0;
    background: white;
}

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

.section-header-center h2 {
    font-size: 40px;
    color: var(--color-dark);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: var(--color-light);
    border-radius: 12px;
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

.services-detail {
    padding: 100px 0;
    background: var(--color-light);
}

.section-title-left {
    font-size: 40px;
    color: var(--color-dark);
    margin-bottom: 60px;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.service-content {
    flex: 2;
}

.service-content h3 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.service-content > p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-price {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-service {
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-service:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.trust-section {
    padding: 0;
}

.trust-split {
    display: flex;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background: var(--color-primary);
    color: white;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.trust-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    flex: 1;
}

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

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.trust-image {
    flex: 1;
    background: var(--color-border);
}

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

.form-section {
    padding: 100px 0;
    background: white;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: var(--color-text-light);
}

.contact-form {
    background: var(--color-light);
    padding: 50px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 16px;
    background: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--color-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    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: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.page-header {
    background: var(--color-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.content-wrapper h2 {
    font-size: 32px;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 24px;
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 16px;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info-block {
    background: var(--color-light);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-detail {
    margin: 20px 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-dark);
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .trust-content {
        padding: 50px 30px;
    }

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

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

    .benefit-card {
        flex: 1 1 100%;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .contact-form {
        padding: 30px;
    }
}
