* {
    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: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    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;
    gap: 20px;
}

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

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2980b9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 18px;
}

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

.hero-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-icon {
    font-size: 20px;
    font-weight: bold;
}

.trust-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

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

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.trust-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2980b9;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

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

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

.split-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #34495e;
}

.service-item p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2980b9;
    background: #e8f4f8;
    padding: 6px 16px;
    border-radius: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #2980b9;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #1f618d;
}

.process-section {
    padding: 80px 40px;
    background: #2c3e50;
    color: #fff;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2980b9;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step p {
    color: #bdc3c7;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 40px;
    background: #ecf0f1;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.cta-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #2980b9;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #2980b9;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background: #2980b9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1f618d;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: #bbb;
    line-height: 1.7;
}

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

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

.footer-column a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #e74c3c;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 32px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 30px;
    }

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

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

    .testimonials {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #2ecc71;
    margin-bottom: 20px;
}

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

.contact-page {
    padding: 80px 40px;
}

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2980b9;
}

.info-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #555;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: #666;
}

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

.services-page {
    padding: 80px 40px;
}

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

.services-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-card-image {
    height: 250px;
    overflow: hidden;
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-price {
    font-size: 20px;
    font-weight: 700;
    color: #2980b9;
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }
}

.about-page {
    padding: 80px 40px;
}

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

.about-header h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

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

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 15px 0 15px 30px;
}

.about-section li {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}