/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c9302c;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --max-width: 680px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    font-size: 16px;
}

/* Editorial Container */
.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

strong, b {
    font-weight: 600;
    color: var(--primary-color);
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a02622;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Content Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* CTA Blocks */
.cta-block {
    background: var(--light-gray);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-block h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #a02622;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 48, 44, 0.3);
    text-decoration: none;
    color: white;
}

.cta-button.urgent {
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

.cta-button.final {
    background: #28a745;
    font-size: 1.2rem;
    padding: 18px 35px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Testimonials */
.testimonial {
    background: var(--light-gray);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Lists */
ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--light-gray);
}

/* Order Section */
.order-section {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
}

.order-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.order-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.option-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.option-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(201, 48, 44, 0.3);
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.option-card ul {
    text-align: left;
    margin: 2rem 0;
}

.option-card li {
    margin-bottom: 0.8rem;
}

.order-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.order-button:hover {
    background: #a02622;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.guarantee-box {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.guarantee-box h3 {
    color: white;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.faq-item p {
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.final-offer {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.final-offer h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 20px 2rem;
    margin-top: 4rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-info {
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.legal-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.disclaimer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.disclaimer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .editorial-container {
        padding: 60px 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .order-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .option-card.featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Contact Form Tablet */
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 2rem auto;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .editorial-container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .cta-block {
        padding: 1.5rem;
    }
    
    .order-section {
        padding: 2rem 1.5rem;
    }
    
    .final-cta {
        padding: 2rem 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem;
    }
    
    /* Contact Form Responsive */
    .contact-form {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-form button[type="submit"] {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .contact-method h3 {
        font-size: 1.1rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--accent-color);
    color: white;
}

/* Contact Form Styling */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 48, 44, 0.1);
    transform: translateY(-1px);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
    border-color: #dc3545;
}

.form-group input:required:valid,
.form-group select:required:valid,
.form-group textarea:required:valid {
    border-color: #28a745;
}

/* Form submission styling */
.contact-form button[type="submit"] {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 48, 44, 0.3);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Form success message */
.contact-form .success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method p:last-child {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(201, 48, 44, 0.3);
}

.step-card h3 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-icon {
    font-size: 2rem;
    margin-top: 1rem;
}

/* Badges */
.popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(201, 48, 44, 0.3);
    z-index: 10;
}

.best-value-badge {
    background: var(--primary-color);
    box-shadow: 0 3px 10px rgba(26, 26, 26, 0.3);
}

/* Product Description */
.product-desc {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Price Container */
.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.price-container .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.price-container .original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin: 0;
}

.price-container .discount {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.trust-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trust-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Guarantee Seal */
.guarantee-seal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 8px 16px;
    margin-top: 1rem;
    font-weight: 600;
    color: white;
}

.seal-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive for Order Section */
@media (max-width: 767px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-container .price {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .popular-badge,
    .best-value-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
        right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Stats Highlights */
.stats-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    margin: 3rem 0;
}

.testimonials-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-section .subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card .rating {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.badge-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.badge-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.badge-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.85rem;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Process Benefits */
.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Step Features */
.step-features {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.process-timeline h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.timeline-time {
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-desc {
    color: white;
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive for Enhanced Sections */
@media (max-width: 767px) {
    .stats-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .badge-item {
        padding: 1rem;
    }
    
    .process-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .timeline-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item {
        min-width: auto;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .stats-highlights {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
