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

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

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 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 {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.hero-section {
    background: linear-gradient(rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1200') center/cover;
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

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

.hero-section p {
    font-size: 22px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ee5a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #fff;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f8f9fa;
}

.section-dark {
    background: #2c3e50;
    color: #fff;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-section {
    max-width: 750px;
    margin: 0 auto;
}

.story-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

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

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

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

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

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.service-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

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

.service-content h3 {
    margin-bottom: 15px;
    color: #667eea;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 15px;
}

.testimonials {
    margin-top: 50px;
}

.testimonial {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #667eea;
}

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.urgency-banner {
    background: #ff6b6b;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 18px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.trust-badge-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.pricing-reveal {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    margin-top: 50px;
    text-align: center;
}

.pricing-reveal h3 {
    font-size: 38px;
    margin-bottom: 30px;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.service-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.service-card .price {
    font-size: 36px;
    font-weight: bold;
    color: #ff6b6b;
    margin: 20px 0;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.contact-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #667eea;
}

footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.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-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.accept-cookies {
    background: #667eea;
    color: #fff;
}

.reject-cookies {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.thanks-page {
    text-align: center;
    padding: 100px 20px;
}

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

.thanks-page p {
    font-size: 20px;
    margin-bottom: 30px;
}

.policy-page {
    padding: 60px 20px;
}

.policy-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.policy-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-page ul {
    margin: 20px 0 20px 40px;
}

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

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

    .hero-section p {
        font-size: 18px;
    }

    .section h2 {
        font-size: 32px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    nav ul {
        gap: 15px;
    }

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