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

:root {
    --primary: #2C3E50;
    --accent: #E74C3C;
    --text: #333333;
    --light: #ECF0F1;
    --white: #FFFFFF;
    --gray: #7F8C8D;
    --border: #BDC3C7;
}

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

img {
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background: #C0392B;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 1;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 2;
    justify-content: flex-end;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.ad-label {
    font-size: 12px;
    color: var(--gray);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--light);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--primary);
    color: var(--white);
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent);
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

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

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

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

.intro-left {
    flex: 1;
    padding: 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary);
}

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

.services-split {
    padding: 80px 0;
    background: var(--light);
}

.services-header-container {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.services-main-title {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-subtitle {
    font-size: 18px;
    color: var(--gray);
}

.service-item-split {
    display: flex;
    margin-bottom: 0;
    min-height: 450px;
}

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

.service-left,
.service-left-text {
    flex: 1;
    padding: 60px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-left h3,
.service-left-text h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-left p,
.service-left-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text);
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.btn-select {
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background: #1A252F;
    transform: translateY(-2px);
}

.service-right,
.service-right-img {
    flex: 1;
    background-color: var(--border);
}

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

.form-split {
    display: flex;
    min-height: 600px;
    background: var(--primary);
}

.form-left {
    flex: 1;
    padding: 80px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 16px;
    position: relative;
    padding-left: 28px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
    padding: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
}

#mainForm {
    width: 100%;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.service-display {
    padding: 16px;
    background: var(--light);
    border-radius: 4px;
    color: var(--text);
    font-weight: 600;
    border: 1px solid var(--border);
}

.service-display.selected {
    background: #D5F4E6;
    border-color: #27AE60;
    color: #27AE60;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #C0392B;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
}

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

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

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

.trust-right {
    flex: 1;
    padding: 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-right h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 40px;
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.quote {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
    color: var(--text);
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.disclaimer-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.footer-split {
    display: flex;
    padding: 60px 80px;
    background: var(--primary);
    color: var(--white);
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-left p {
    opacity: 0.7;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-note {
    font-size: 13px;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-item-split,
    .form-split,
    .trust-split,
    .footer-split {
        flex-direction: column;
    }

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

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

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

    .services-main-title {
        font-size: 32px;
    }

    .footer-right {
        text-align: left;
        margin-top: 30px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}