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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

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

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

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

.main-header {
    background: #1a252f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
    background: #bdc3c7;
}

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

.intro-right {
    flex: 1;
    padding: 70px 60px;
    background: #ecf0f1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-right p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.services-showcase {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 19px;
    color: #7f8c8d;
}

.service-item {
    margin-bottom: 70px;
}

.service-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-icon {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.btn-select {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px;
    margin-top: 100px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
    color: white;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.form-left p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    padding: 18px 24px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
    font-size: 16px;
}

.form-right {
    flex: 1;
}

.main-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.selected-service-display {
    background: #e8f5e9;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    display: none;
    font-weight: 600;
    color: #2c3e50;
}

.selected-service-display.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.trust-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.trust-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.trust-card {
    flex: 1;
    background: #f8f9fa;
    padding: 45px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.trust-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 50px 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
}

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

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

.thanks-page p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-page .service-info {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #27ae60;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    background: #3498db;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.thanks-page a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .hero-split,
    .intro-section,
    .form-container-split {
        flex-direction: column;
    }

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

    .trust-grid,
    .footer-content {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}