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

:root {
    --primary: #2c5f8d;
    --secondary: #e84545;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #ff8c42;
    --text: #333;
    --border: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: linear-gradient(135deg, var(--primary), #1e4666);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hero {
    background: linear-gradient(to bottom, rgba(28, 70, 102, 0.92), rgba(44, 95, 141, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a2e" width="1200" height="600"/><circle cx="200" cy="150" r="80" fill="%232c5f8d" opacity="0.3"/><circle cx="900" cy="400" r="120" fill="%23ff8c42" opacity="0.2"/><rect x="600" y="100" width="150" height="150" fill="%23e84545" opacity="0.25" transform="rotate(45 675 175)"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 120px 20px 100px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 69, 69, 0.3);
}

.cta-primary:hover {
    background: #d13838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 69, 69, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary);
    color: white;
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: white;
}

.section-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.section-gradient {
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-blue {
    background: linear-gradient(120deg, #2c5f8d, #1e4666);
    color: white;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
}

.section-dark .service-card,
.section-blue .service-card,
.section-gradient .service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-top-color: var(--accent);
}

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

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .service-card h3,
.section-blue .service-card h3,
.section-gradient .service-card h3 {
    color: var(--accent);
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 20px;
}

.section-dark .price,
.section-blue .price,
.section-gradient .price {
    color: var(--accent);
}

.features-list {
    list-style: none;
    margin-top: 15px;
}

.features-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.split-section {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.split-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.split-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-dark .form-container,
.section-blue .form-container {
    background: rgba(255,255,255,0.95);
    color: var(--text);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.section-dark .stat-number,
.section-blue .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent);
}

.section-dark .testimonial,
.section-blue .testimonial {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.section-dark .testimonial-author,
.section-blue .testimonial-author {
    color: var(--accent);
}

.why-choose {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-alt .why-item {
    background: white;
}

.why-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.why-item p {
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    position: relative;
}

.section-dark .process-step,
.section-blue .process-step {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cta-block {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary), #c93030);
    color: white;
}

.cta-block h2 {
    margin-bottom: 25px;
    font-size: 2.8rem;
}

.cta-block p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

.sticky-cta a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--dark);
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.sticky-cta a:hover {
    background: #0f0f1a;
}

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

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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-text {
    flex: 1 1 400px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-accept:hover {
    background: #d13838;
}

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

.cookie-reject:hover {
    background: white;
    color: var(--dark);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-item p {
    line-height: 1.7;
    color: var(--text);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    line-height: 1.8;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
    }

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

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

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 50px 20px;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .why-item {
        flex: 1 1 100%;
    }
}