/* ==================== NEW PAGES STYLES ==================== */

/* ==================== USER PAGE STYLES ==================== */

/* User Hero */
.user-hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, #0d1421 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.user-hero .hero-stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.4), transparent);
    background-size: 200px 200px;
    opacity: 0.5;
}

.user-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.user-hero-content .eyebrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.user-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.user-hero-content h1 .highlight {
    color: var(--primary-color);
}

.user-hero-content .hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 120px;
}

.price-tag .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-tag .price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* User Steps */
.user-steps {
    padding: 100px 0;
    background: transparent;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    width: 180px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.step-connector {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .steps-flow {
        flex-direction: column;
    }
    .step-connector {
        transform: rotate(90deg);
    }
}

/* Powerbank Specs */
.powerbank-specs {
    padding: 100px 0;
    background: transparent;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.specs-image {
    display: flex;
    justify-content: center;
}

.specs-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.specs-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.specs-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.spec-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.spec-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.spec-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .specs-image {
        order: -1;
    }
}

/* Use Cases */
.use-cases {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.use-case {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 140px;
}

.use-case i {
    font-size: 2rem;
    color: var(--primary-color);
}

.use-case span {
    color: var(--white);
    font-size: 0.95rem;
}

/* User FAQ */
.user-faq {
    padding: 100px 0;
    background: transparent;
}

.faq-simple {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-simple .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-simple .faq-item h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-simple .faq-item h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-simple .faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 1.8rem;
}

.faq-simple .faq-item ul.faq-list {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 3rem;
    margin-top: 0.5rem;
}

.faq-simple .faq-item ul.faq-list li {
    margin-bottom: 0.3rem;
}

.faq-simple .faq-category {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.faq-simple .faq-category:first-child {
    margin-top: 0;
}

.faq-simple .faq-category-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(78, 181, 255, 0.3);
}

.faq-simple .faq-category-title i {
    font-size: 1.1rem;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
}

.cta-final h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.cta-final .btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(78, 181, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(78, 181, 255, 0.6);
    }
}

.cta-final .btn:hover {
    animation: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==================== CONSUMER PAGE MOBILE ==================== */

@media (max-width: 768px) {
    .user-hero {
        padding: 100px 0 60px;
    }
    
    .user-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-pricing {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-tag {
        width: 100%;
    }
    
    .steps-flow {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .step-card {
        width: 100%;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-image {
        order: -1;
    }
    
    .specs-image img {
        max-height: 250px;
    }
    
    .specs-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .specs-intro {
        text-align: center;
    }
    
    .use-cases {
        flex-direction: column;
        gap: 1rem;
    }
    
    .use-case {
        width: 100%;
    }
    
    .faq-simple .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-simple .faq-item p {
        font-size: 0.9rem;
        padding-left: 0;
    }
    
    .cta-final {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .user-hero-content h1 {
        font-size: 1.7rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
}

/* ==================== ORIGINAL PAGE STYLES ==================== */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.business-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a4f6f 100%);
}

/* How It Works Detailed */
.how-it-works-detailed {
    padding: 100px 0;
    background: var(--white);
}

.detailed-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.detailed-step {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.detailed-step.reverse {
    direction: rtl;
}

.detailed-step.reverse > * {
    direction: ltr;
}

.step-visual {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.3);
}

.step-visual i {
    font-size: 5rem;
    color: white;
}

.step-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
}

.step-features i {
    color: var(--primary-color);
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.3);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-features {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(135, 193, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0.3rem;
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: var(--primary-color);
}

/* Locations */
.locations-section {
    padding: 100px 0;
    background: var(--white);
}

.location-search {
    max-width: 600px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 1rem;
}

.location-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
}

.location-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.location-cat {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-cat:hover,
.location-cat.active {
    background: var(--primary-color);
    color: var(--white);
}

.map-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--primary-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(135, 193, 217, 0.05);
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.faq-question i:last-child {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a4f6f 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Dark theme benefit cards for business page */
.user-steps.benefits-section .benefits-grid .benefit-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.user-steps.benefits-section .benefits-grid .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 181, 255, 0.2);
    border-color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.user-steps.benefits-section .benefits-grid .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.user-steps.benefits-section .benefits-grid .benefit-icon i {
    font-size: 2rem;
    color: white !important;
}

.user-steps.benefits-section .benefits-grid .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.user-steps.benefits-section .benefits-grid .benefit-card p {
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8;
}

/* Light theme benefit cards (default) */
.benefit-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.3);
    border-color: var(--primary-color);
    background: var(--white);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Business Process */
.business-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(135, 193, 217, 0.4);
    position: relative;
    z-index: 1;
}

.process-content {
    flex: 1;
    padding-top: 1rem;
}

.process-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.process-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Target Businesses */
.target-businesses {
    padding: 100px 0;
    background: var(--white);
}

.business-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.business-type {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.business-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(135, 193, 217, 0.3);
    background: var(--white);
}

.business-type i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.business-type h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.business-type p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.3);
}

.stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.stars i {
    margin-right: 0.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Revenue Calculator */
.revenue-calculator {
    padding: 100px 0;
    background: var(--white);
}

.calculator-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-input {
    margin-bottom: 3rem;
}

.calculator-input label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.calculator-input input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(135, 193, 217, 0.3);
    border-radius: 5px;
    outline: none;
    margin-bottom: 1rem;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

.calculator-input span {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.calculator-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.result-item div {
    display: flex;
    flex-direction: column;
}

.result-item strong {
    font-size: 2rem;
    color: var(--secondary-color);
}

.result-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Blog Styles */
.featured-post {
    padding: 60px 0;
    background: var(--white);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.featured-image i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.featured-content {
    padding: 3rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.featured-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Blog Grid */
.blog-grid-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(135, 193, 217, 0.3);
    border-color: var(--primary-color);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a4f6f 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.newsletter-icon i {
    font-size: 2rem;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-form-full {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(135, 193, 217, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    color: white;
    font-size: 1.3rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-social {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.contact-social h3 {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
}

.map-placeholder-large {
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--primary-color);
    margin-top: 2rem;
}

.map-placeholder-large i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-address {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.showcase-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.showcase-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.showcase-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.showcase-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.showcase-image {
    height: 350px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.showcase-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.showcase-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.showcase-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.showcase-details {
    padding: 2rem;
}

.showcase-details h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.showcase-details ul {
    list-style: none;
    padding: 0;
}

.showcase-details ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.showcase-details ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.showcase-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-cta h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.showcase-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.showcase-cta-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.showcase-cta-section .showcase-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-cta-section .showcase-cta h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.showcase-cta-section .showcase-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ==================== BUSINESS PAGE DARK THEME ==================== */

/* Benefits grid in space theme */
.user-steps.benefits-section {
    background: linear-gradient(180deg, #111827 0%, #0d1421 100%);
}

.user-steps.benefits-section .section-header h2 {
    color: var(--white);
}

.user-steps.benefits-section .section-header .section-subtitle {
    color: var(--text-light);
}

.user-steps.benefits-section .benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.user-steps.benefits-section .benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(78, 181, 255, 0.15);
}

.user-steps.benefits-section .benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.user-steps.benefits-section .benefit-card h3 {
    color: #ffffff !important;
}

.user-steps.benefits-section .benefit-card p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.user-steps.benefits-section .benefit-icon i {
    color: #ffffff !important;
}

/* Target businesses dark theme */
.target-businesses {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1421 0%, #111827 100%);
}

.target-businesses .section-header h2 {
    color: var(--white);
}

.target-businesses .section-header .section-subtitle {
    color: var(--text-light);
}

.target-businesses .business-type {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.target-businesses .business-type:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(78, 181, 255, 0.15);
}

.target-businesses .business-type h3 {
    color: var(--white);
}

.target-businesses .business-type p {
    color: rgba(255, 255, 255, 0.6);
}

/* Calculator in space bleed section */
.calculator-section {
    max-width: 700px;
    margin: 0 auto;
}

.space-bleed-section .calculator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.space-bleed-section .calculator-input {
    margin-bottom: 2rem;
}

.space-bleed-section .calculator-input label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.space-bleed-section .calculator-input input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.space-bleed-section .calculator-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(78, 181, 255, 0.4);
    transition: transform 0.2s ease;
}

.space-bleed-section .calculator-input input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.space-bleed-section .range-value {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.space-bleed-section .calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.space-bleed-section .calc-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.space-bleed-section .calc-result i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.space-bleed-section .calc-result strong {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
}

.space-bleed-section .calc-result span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.space-bleed-section .calc-result.highlight-result {
    background: linear-gradient(135deg, rgba(78, 181, 255, 0.15), rgba(125, 226, 209, 0.1));
    border-color: rgba(78, 181, 255, 0.3);
}

.space-bleed-section .calc-result.highlight-result strong {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Station showcase dark */
.station-showcase {
    background: linear-gradient(180deg, #111827 0%, #0d1421 100%);
}

.station-showcase .specs-content h2 {
    color: var(--white);
}

.station-showcase .specs-intro {
    color: rgba(255, 255, 255, 0.8);
}

.station-showcase .spec-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.station-showcase .spec-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
}

.station-showcase .spec-item strong {
    color: var(--white);
}

.station-showcase .spec-item span {
    color: rgba(255, 255, 255, 0.6);
}

/* CTA buttons in space-bleed */
.space-bleed-content .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.space-bleed-content .cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.space-bleed-content .cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive calculator */
@media (max-width: 768px) {
    .space-bleed-section .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .space-bleed-section .calc-result {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .detailed-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-visual {
        margin: 0 auto;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ==================== EVENTS SECTION STYLES ==================== */

/* Events Section */
.events-section {
    background: linear-gradient(180deg, #111827 0%, #0d1421 100%);
    padding: 100px 0;
}

.events-section .section-header h2 {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.events-section .section-header h2 i {
    color: var(--primary-color);
}

.events-section .section-subtitle {
    color: var(--text-light);
}

.events-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.event-type-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 181, 255, 0.15);
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.event-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.event-type-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.event-type-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-features {
    list-style: none;
    padding: 0;
}

.event-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.event-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Events Benefits */
.events-benefits .space-stats {
    flex-wrap: wrap;
}

/* Event Packages */
.events-packages {
    background: linear-gradient(180deg, #0d1421 0%, #111827 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 181, 255, 0.15);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: rgba(78, 181, 255, 0.08);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.package-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.package-content .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.package-content .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.package-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Events */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .events-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
