/* ==========================================================================
   Orgone Motor Review - Main Stylesheet
   ========================================================================== */

/* CSS Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1.8;
}

/* Header
   ========================================================================== */
#main-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h2 {
    font-size: 24px;
    color: #2D8659;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: #1A1A1A;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu li a:hover {
    color: #2D8659;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1A1A1A;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons & CTAs
   ========================================================================== */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    min-height: 44px;
}

.cta-button.primary {
    background-color: #FF9500;
    color: #FFFFFF;
}

.cta-button.primary:hover {
    background-color: #E68500;
    transform: scale(1.03);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Hero Section
   ========================================================================== */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background-color: #2D8659;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hero-cta {
    margin-top: 30px;
}

.price-note {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

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

/* Section Header
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.section-header p {
    font-size: 18px;
    color: #333;
}

/* Value Section
   ========================================================================== */
.value-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #2D8659;
    box-shadow: 0 8px 20px rgba(45, 134, 89, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2D8659;
}

.value-card p {
    font-size: 16px;
    color: #333;
}

/* Problem Section
   ========================================================================== */
.problem-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-card h3 {
    color: #D32F2F;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Solution Section
   ========================================================================== */
.solution-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.solution-text h2 {
    margin-bottom: 25px;
}

.solution-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkmark {
    color: #2D8659;
    font-weight: 700;
    font-size: 20px;
    margin-right: 12px;
}

.solution-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Benefits Section
   ========================================================================== */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f7fa 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #2D8659;
    margin-bottom: 15px;
    font-size: 22px;
}

.benefits-cta {
    text-align: center;
    margin-top: 50px;
}

/* Timeline / How It Works
   ========================================================================== */
.how-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: #2D8659;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #2D8659;
    margin-bottom: 12px;
    font-size: 22px;
}

/* Specifications Section
   ========================================================================== */
.specs-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.specs-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.specs-table-wrapper {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 18px 25px;
    font-size: 16px;
}

.spec-label {
    font-weight: 600;
    color: #1A1A1A;
    width: 50%;
}

.spec-value {
    color: #2D8659;
    font-weight: 700;
}

.specs-features h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D8659;
    font-weight: 700;
    font-size: 18px;
}

/* Applications Section
   ========================================================================== */
.applications-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.application-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2D8659;
}

.application-card h3 {
    color: #2D8659;
    margin-bottom: 12px;
    font-size: 20px;
}

/* Comparison Table
   ========================================================================== */
.comparison-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background-color: #2D8659;
    color: #FFFFFF;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
}

.comparison-table th.highlight {
    background-color: #FF9500;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table td {
    padding: 18px 15px;
    font-size: 16px;
}

.comparison-table td.highlight {
    background-color: #fff8e1;
    font-weight: 700;
    color: #2D8659;
}

.comparison-summary {
    margin-top: 30px;
    padding: 25px;
    background-color: #e8f5e9;
    border-left: 4px solid #2D8659;
    border-radius: 8px;
}

.comparison-summary p {
    font-size: 16px;
    margin: 0;
}

/* Bonuses Section
   ========================================================================== */
.bonuses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.bonus-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.bonus-content {
    padding: 25px;
}

.bonus-content h3 {
    color: #2D8659;
    margin-bottom: 10px;
    font-size: 20px;
}

.bonus-value {
    color: #FF9500;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.bonuses-total {
    text-align: center;
    margin-top: 40px;
}

.total-value {
    font-size: 24px;
    color: #2D8659;
}

/* Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.location {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 10px;
    align-items: center;
}

.stars {
    color: #FF9500;
    font-size: 16px;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-result {
    background-color: #e8f5e9;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 15px;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    padding: 25px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2D8659;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* FAQ Section
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #FFFFFF;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background-color: #FFFFFF;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-icon {
    font-size: 24px;
    color: #2D8659;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 25px 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* Review Section
   ========================================================================== */
.review-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.review-intro {
    font-size: 18px;
    color: #333;
    font-style: italic;
    margin-top: 15px;
}

.review-content {
    max-width: 900px;
    margin: 50px auto 0;
}

.review-content h3 {
    color: #2D8659;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 26px;
}

.review-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.pros-list,
.cons-list {
    margin: 25px 0;
}

.pros-list li,
.cons-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.pros-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D8659;
    font-weight: 700;
    font-size: 18px;
}

.cons-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D32F2F;
    font-weight: 700;
    font-size: 18px;
}

.verdict-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f7fa 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 6px solid #2D8659;
}

.verdict-rating {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #d0d0d0;
}

.stars-large {
    font-size: 48px;
    color: #FF9500;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 24px;
    font-weight: 700;
    color: #2D8659;
    margin-bottom: 8px;
}

.rating-label {
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verdict-summary p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Final CTA Section
   ========================================================================== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D8659 0%, #3DA66F 100%);
    color: #FFFFFF;
}

.final-cta-content h2 {
    color: #FFFFFF;
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-subtitle {
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.cta-offer-box {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.offer-details h3 {
    color: #2D8659;
    font-size: 24px;
    margin-bottom: 20px;
}

.offer-list {
    margin-bottom: 30px;
}

.offer-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-price {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.regular-price {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.sale-price {
    font-size: 32px;
    color: #2D8659;
    margin-bottom: 10px;
}

.sale-price strong {
    font-size: 48px;
}

.savings {
    font-size: 16px;
    color: #FF9500;
    font-weight: 700;
}

.guarantee-badge-container {
    text-align: center;
}

.guarantee-badge-container img {
    margin: 0 auto 20px;
}

.guarantee-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

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

.instant-access-note {
    color: #FFFFFF;
    font-size: 14px;
    margin-top: 15px;
}

.trust-signals-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-signal {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.trust-signal strong {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.trust-signal span {
    font-size: 14px;
}

/* Footer
   ========================================================================== */
#main-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 20px;
}

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

.copyright {
    margin-top: 20px;
    font-size: 13px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B0B0;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3DA66F;
}

.support-contact {
    margin-top: 30px;
}

.support-contact a {
    color: #3DA66F;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

.footer-disclaimer a {
    color: #3DA66F;
    text-decoration: underline;
}

/* Responsive Design - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-offer-box {
        grid-template-columns: 1fr;
    }
    
    .trust-signals-footer {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 40px 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Sections Mobile */
    section {
        padding: 50px 0;
    }
    
    .value-grid,
    .benefits-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-number {
        margin: 0 auto 20px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    
    .review-content h3 {
        font-size: 22px;
    }
    
    .final-cta-content h2 {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 17px;
    }
    
    .trust-signals-footer {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design - Small Mobile
   ========================================================================== */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .cta-button.large {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .sale-price strong {
        font-size: 36px;
    }
}

/* Print Styles
   ========================================================================== */
@media print {
    header, footer, .cta-button {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}