* {
    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;
}

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

.main-header {
    background: #1a1a2e;
    padding: 0;
}

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

.logo-section h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
}

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

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

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

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    background: #5a67d8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.intro-split {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.intro-image {
    flex: 1;
    background: #f1f3f5;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-preview {
    background: #f8f9fa;
    padding: 90px 30px;
}

.section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h3 {
    font-size: 36px;
    color: #1a1a2e;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e9ecef;
}

.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 18px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

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

.cta-center a {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-center a:hover {
    background: #5a67d8;
}

.process-split {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.step-content p {
    font-size: 15px;
    color: #4a5568;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h4 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

.service-form label {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.service-form input,
.service-form select {
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: #667eea;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-section {
    background: #1a1a2e;
    padding: 90px 30px;
    color: #ffffff;
}

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

.trust-content h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 14px;
    color: #a0aec0;
}

.advantages-split {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.advantages-image {
    flex: 1;
    background: #f1f3f5;
}

.advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.advantages-list {
    flex: 1;
}

.advantages-list h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.advantages-list ul {
    list-style: none;
}

.advantages-list li {
    font-size: 17px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 22px;
    font-weight: 700;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
}

.disclaimer-section p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
}

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

.footer-columns {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #a0aec0;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #667eea;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 30px;
    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: 30px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #667eea;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #5a67d8;
}

.cookie-btn.reject {
    background: #e2e8f0;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #cbd5e0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-container .back-btn {
    display: inline-block;
    margin-top: 30px;
    background: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container .back-btn:hover {
    background: #5a67d8;
}

.contact-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background: #f1f3f5;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-hero {
    background: #667eea;
    padding: 80px 30px;
    color: #ffffff;
    text-align: center;
}

.about-hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 30px;
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.services-list h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

.service-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-details p {
    font-size: 16px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.legal-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .hero-content,
    .intro-split,
    .process-split,
    .advantages-split,
    .contact-split {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
}