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

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

.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: 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;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

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

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

nav a:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

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

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.cta-button-secondary {
    background: #4ecdc4;
}

.cta-button-tertiary {
    background: #95e1d3;
    color: #2c3e50;
}

.story-section {
    padding: 80px 0;
    background: #fff;
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.story-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    margin: 40px auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

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

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

.problem-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
}

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

.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.solution-card {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.solution-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #667eea;
}

.testimonial-section {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 17px;
}

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

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 36px;
    min-width: 50px;
}

.benefit-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.services-showcase {
    padding: 80px 0;
    background: #fff;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 36px;
    font-weight: bold;
    margin: 25px 0;
}

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

.service-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.urgency-section {
    padding: 60px 0;
    background: #ff6b6b;
    color: #fff;
    text-align: center;
}

.urgency-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.urgency-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

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

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

.submit-button {
    width: 100%;
    background: #667eea;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #5568d3;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6b6b;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

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

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

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    line-height: 2;
}

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

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

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.cookie-button:hover {
    opacity: 0.8;
}

.accept-cookies {
    background: #4ecdc4;
    color: #fff;
}

.reject-cookies {
    background: #95a5a6;
    color: #fff;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-content {
    padding: 80px 0;
}

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

.about-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #667eea;
}

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

.services-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-detail {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #667eea;
}

.service-detail .price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.service-detail ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.contact-hero {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 0;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #667eea;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 18px;
    color: #555;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 35px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #667eea;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #667eea;
        display: none;
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

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

    .story-content h2 {
        font-size: 28px;
    }

    .problem-item,
    .solution-card,
    .service-card {
        min-width: 100%;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-button {
        width: 100%;
    }
}
