* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2980b9;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

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

.editorial-hero {
    position: relative;
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 40px 30px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
}

.editorial-content {
    font-size: 18px;
    line-height: 1.8;
}

.content-block {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.content-block p {
    margin-bottom: 20px;
    color: #34495e;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c3e50;
}

.content-block h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
    display: block;
}

.full-width-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
}

.cta-inline {
    margin: 30px 0;
    padding: 20px;
    background-color: #ecf0f1;
    border-left: 4px solid #2980b9;
    border-radius: 4px;
}

.cta-link {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1f5f8b;
    text-decoration: underline;
}

.editorial-list {
    margin: 20px 0;
    padding-left: 24px;
}

.editorial-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.highlight-section {
    background-color: #fef9e7;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #f39c12;
}

.testimonial-block {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
}

.testimonial-block blockquote {
    border: none;
    margin: 0;
}

.testimonial-block p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 12px;
}

.feature-story,
.ice-type-story {
    margin: 28px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.feature-story:last-child,
.ice-type-story:last-child {
    border-bottom: none;
}

.feature-story h4,
.ice-type-story strong {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.urgency-section {
    background-color: #fdeef4;
    padding: 30px;
    border-radius: 6px;
    border-left: 5px solid #e74c3c;
}

.pricing-reveal {
    background-color: #e8f5e9;
    padding: 40px 30px;
    border-radius: 8px;
    margin: 50px 0;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}

.price-item {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 2px solid #dfe6e9;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.1);
}

.price-item.highlighted {
    border-color: #27ae60;
    background-color: #f1f8f4;
}

.price-item h4 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #2c3e50;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin: 8px 0;
}

.price-note {
    font-size: 15px;
    color: #7f8c8d;
    margin: 8px 0 0 0;
}

.pricing-footer {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 20px;
}

.savings-note {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
    margin-top: 8px;
}

.form-section {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    margin: 50px 0;
}

.form-section h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.editorial-form {
    margin-top: 30px;
}

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

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

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

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

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.final-note {
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
}

.small-text {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 400;
}

.cta-block {
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #2980b9;
    margin: 40px 0;
}

.service-detail {
    padding: 30px 0;
    border-bottom: 2px solid #ecf0f1;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.highlighted-service {
    background-color: #f1f8f4;
    padding: 35px;
    border-radius: 8px;
    border: 2px solid #27ae60;
}

.note-text {
    background-color: #fff3cd;
    padding: 16px;
    border-radius: 4px;
    border-left: 4px solid #ffc107;
    font-size: 16px;
    margin: 20px 0;
}

.faq-item {
    margin: 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

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

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #7f8c8d;
}

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

.thanks-section h1 {
    font-size: 38px;
    color: #27ae60;
    margin-bottom: 30px;
}

.legal-content {
    font-size: 16px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 35px;
}

.legal-content h3 {
    font-size: 20px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

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

    .logo {
        font-size: 18px;
    }

    .editorial-container {
        padding: 20px 16px 60px;
    }

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

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

    .editorial-content {
        font-size: 17px;
    }

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

    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-overlay {
        padding: 24px 20px;
    }

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

    .price {
        font-size: 26px;
    }
}