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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.minimal-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.editorial-content {
    max-width: 100%;
}

.story-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 700px;
    font-weight: 400;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 24px;
    font-weight: 400;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333333;
}

.narrow-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    font-size: 20px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #45a049;
    border-bottom-color: #45a049;
}

.problem-list {
    margin: 28px 0;
    padding-left: 24px;
}

.problem-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333333;
}

.highlight-box {
    background: #f5f5f5;
    border-left: 4px solid #4CAF50;
    padding: 28px;
    margin: 36px 0;
}

.highlight-box p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    color: #1a1a1a;
}

.testimonial {
    background: #fafafa;
    border-left: 3px solid #4CAF50;
    padding: 24px 28px;
    margin: 32px 0;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #666666;
}

.inline-cta-box {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 40px;
    margin: 48px 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-box p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #4CAF50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefits-grid {
    margin-top: 40px;
}

.benefit-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.services-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card.featured {
    border: 3px solid #4CAF50;
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #4CAF50;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #333333;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 24px;
}

.select-service {
    width: 100%;
    padding: 16px 32px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.urgency-section {
    background: #fff9e6;
    padding: 80px 0;
}

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

.urgency-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 48px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

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

.order-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

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

.checkbox-group a {
    color: #4CAF50;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.final-push {
    background: #2c2c2c;
    color: #ffffff;
    padding: 80px 0;
}

.final-push h2 {
    color: #ffffff;
}

.final-push p {
    color: #e0e0e0;
}

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

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    border-top: 1px solid #333333;
    text-align: center;
}

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

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

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #45a049;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .narrow-content {
        padding: 40px 20px;
    }

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

    .lead-text {
        font-size: 19px;
    }

    .narrow-content p {
        font-size: 17px;
    }

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

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

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

    .sticky-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.info-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.info-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.info-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333333;
}

.info-page ul,
.info-page ol {
    margin: 20px 0;
    padding-left: 32px;
}

.info-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333333;
}

.info-page a {
    color: #4CAF50;
    text-decoration: underline;
}

.info-page a:hover {
    color: #45a049;
}

.info-page strong {
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info {
    background: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info strong {
    display: inline-block;
    min-width: 140px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #4CAF50;
}

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

.thanks-content .service-info {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-content .btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}