/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Banner Styles */
.header-banner {
    background-color: #f5e6d3; /* Light peach/beige background */
    padding: 60px 20px;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6600; /* Vibrant orange color */
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
    line-height: 1;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
}

.sub-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333333; /* Dark gray/black color */
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
}

/* Main Content Area */
.main-content {
    padding: 10px 10px;
    background-color: #f8f9fa;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Video Section - Left Side */
.video-section {
    flex: 1;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.video-player {
    width: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #000;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
}

.video-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.video-icon {
    font-size: 16px;
}

.video-controls {
    display: flex;
    gap: 12px;
}

.control-icon {
    font-size: 16px;
    cursor: pointer;
}

.video-content {
    flex: 1;
    padding: 10px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: #0066cc;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
}

.video-banner span {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.video-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.video-subtitle {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.offer-banner {
    background: #0066cc;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    margin-right: 10px;
}

.offer-price {
    color: #ffcc00;
    font-size: 1.4rem;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.timer-box {
    background: #0066cc;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 5px;
}

.thumbnails-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.thumbnail {
    background: #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    flex: 1;
    max-width: 120px;
}

.thumb-image {
    font-size: 2rem;
    margin-bottom: 10px;
}

.thumb-text {
    color: #00ff00;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
}

.video-footer h4 {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.video-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #000;
    color: #fff;
}

.play-button {
    font-size: 24px;
    cursor: pointer;
}

.time {
    font-size: 14px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: #0066cc;
    border-radius: 2px;
}

.volume, .settings, .pip, .fullscreen {
    font-size: 16px;
    cursor: pointer;
}

.vimeo-logo {
    font-size: 12px;
    color: #999;
}

/* Offer Section - Right Side */
.offer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-card {
    background: #f5e6d3;
    border: 2px solid #ff6600;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255,102,0,0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-header {
    margin-bottom: 25px;
}

.offer-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-month {
    color: #ff6600;
    font-weight: bold;
}

.offer-text {
    color: #666;
    font-size: 1.1rem;
}

.countdown-section {
    margin-bottom: 25px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}

.countdown-item {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    display: block;
}

.countdown-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.target-audience {
    margin-bottom: 25px;
}

.target-audience h4 {
    color: #ff6600;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-section {
    text-align: center;
}

.buy-now-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
}

.buy-now-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

.btn-arrow {
    font-size: 1.5rem;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-3deg);
    }
    25% {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(-5px);
    }
}

.bonus-text {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}



/* Responsive Design */
@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        gap: 10px;
    }
    
    .video-section, .offer-section {
        flex: 1;
    }
    
    .video-main-title {
        font-size: 3rem;
    }
    
    .video-subtitle {
        font-size: 2.5rem;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .countdown-grid {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 15px;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .video-main-title {
        font-size: 1.8rem;
    }
    
    .video-subtitle {
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.6rem;
        gap: 5px;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .countdown-labels {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .thumbnails-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .thumbnail {
        max-width: 100%;
    }
    
    .buy-now-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        animation: swing 1.8s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.4rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .header-banner {
        padding: 20px 10px;
        min-height: 120px;
    }
    
    .video-main-title {
        font-size: 1.4rem;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
        gap: 3px;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .countdown-labels {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    
    .countdown-item {
        padding: 10px 5px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .buy-now-btn {
        padding: 12px 25px;
        font-size: 1rem;
        animation: swing 1.5s ease-in-out infinite;
    }
}

/* Slider Section */
.slider-section {
    padding: 20px 10px;
    background-color: #f5e6d3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* MORE VIEWS Button */
.more-views-btn {
    background: #ff6600;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* Slider Wrapper */
.slider-wrapper {
    display: flex;
    gap: 15px;
    height: 400px;
}

/* Slider Container */
.slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Slider Track */
.slider-track {
    position: relative;
    height: 100%;
    width: 100%;
}

/* Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    opacity: 0;
}

.slide.active {
    transform: translateX(0);
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile Responsive Design for Sliders */
@media (max-width: 768px) {
    .slider-wrapper {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .slider-container {
        height: 250px;
        min-height: 250px;
        position: relative;
        overflow: hidden;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .slider-track {
        height: 100%;
        width: 100%;
        position: relative;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        opacity: 0;
        display: block;
        z-index: 0;
    }
    
    .slide.active {
        transform: translateX(0);
        opacity: 1;
        z-index: 1;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        display: block;
        max-width: 100%;
        max-height: 100%;
        visibility: visible;
    }
    
    .more-views-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Editable Text Section */
.editable-text-section {
    padding: 30px 10px;
    background-color: #f5e6d3;
    text-align: center;
}

.editable-text {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.red-dot {
    color: #ff0000;
    font-size: 1.8rem;
    margin-right: 5px;
    position: relative;
    top: -2px;
}

.text-part-1 {
    color: #333;
}

.text-part-2 {
    color: #ff6600;
}

/* Responsive Design for Editable Text */
@media (max-width: 768px) {
    .editable-text {
        font-size: 2.5rem;
        font-weight: 900;
        letter-spacing: 2px;
        gap: 8px;
    }
    
    .red-dot {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .editable-text {
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 1px;
        gap: 5px;
    }
    
    .red-dot {
        font-size: 1.8rem;
    }
}

/* Limited Time Offer Section */
.limited-offer-section {
    padding: 40px 10px;
    background-color: #fff;
    text-align: center;
}

.limited-offer-banner {
    background: #f5e6d3;
    color: #ff6600;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff6600;
}

.rating-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: #f5e6d3;
    border: 2px dashed #ff6600;
    border-radius: 15px;
    padding: 15px 25px;
    display: inline-block;
    flex-direction: column;
}

.stars {
    margin-bottom: 8px;
}

.star {
    color: #ffcc00;
    font-size: 1.5rem;
    margin: 0 2px;
}

.star.filled {
    color: #ff6600;
}

.rating-text {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
}

.lifetime-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6600;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.offer-content {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.features-column {
    flex: 1;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.checkmark {
    color: #ff6600;
    font-size: 1.3rem;
    font-weight: bold;
}

.feature-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hanging-buy-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 25px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
    min-width: 280px;
}

.hanging-buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

.btn-main-text {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design for Limited Offer Section */
@media (max-width: 768px) {
    .rating-line {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .lifetime-title {
        font-size: 2rem;
    }
    
    .hanging-buy-btn {
        padding: 20px 30px;
        font-size: 1.2rem;
        min-width: 250px;
    }
    
    .btn-main-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .limited-offer-banner {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .lifetime-title {
        font-size: 1.8rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .hanging-buy-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
        min-width: 220px;
        animation: swing 1.5s ease-in-out infinite;
    }
    
    .btn-main-text {
        font-size: 1.1rem;
    }
}

/* Customer Testimonials Section */
.testimonials-section {
    padding: 50px 10px;
    background-color: #f5e6d3; /* Same background as offer section */
    text-align: center;
}

.testimonials-heading h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.listen-text {
    color: #333; /* Black color for "Listen to" */
}

.customers-text {
    color: #ff0000; /* Red color for "our customers" */
}

.whatsapp-chat-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.whatsapp-chat-container {
    flex: 1;
    max-width: 50%;
}

.whatsapp-chat-image {
    width: 100%;
    height: auto;
    max-height: 800px; /* Increased height */
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Testimonials CTA Section */
.testimonials-cta {
    margin-top: 40px;
    text-align: center;
}

.testimonials-hanging-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 25px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
    min-width: 280px;
    margin: 0 auto;
}

.testimonials-hanging-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

/* Practical Growth Text Section */
.practical-growth-text {
    margin-top: 40px;
    text-align: center;
}

.practical-growth-text h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.practical-text {
    color: #333; /* Black color for "Practical" */
}

.growth-text {
    color: #ff0000; /* Red color for "Growth" */
}

/* Testimonial Text Section */
.testimonial-text {
    margin-top: 30px;
    text-align: left; /* Changed from center to left */
    max-width: 1000px;
    margin-left: 0; /* Changed from auto to 0 for left alignment */
    margin-right: auto;
    padding: 0 20px;
}

.testimonial-text p {
    font-size: 1.8rem; /* Increased from 1.4rem */
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

.highlight-text {
    color: #ff0000; /* Red color for "India's No.1 Thumbnails Pack" */
    font-weight: bold;
    text-transform: uppercase;
}

/* Experiment Text Section */
.experiment-text {
    margin-top: 20px;
    text-align: left; /* Changed from center to left */
    max-width: 1000px;
    margin-left: 0; /* Changed from auto to 0 for left alignment */
    margin-right: auto;
    padding: 0 20px;
}

.experiment-text p {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff0000; /* Total red color */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wide Image Section */
.wide-image-section {
    margin-top: 30px;
    text-align: center;
    padding: 0 20px;
}

.wide-image {
    width: 90%; /* More width - 90% of container */
    max-width: 1400px; /* Very wide maximum width */
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Wide Image CTA Section */
.wide-image-cta {
    margin-top: 40px;
    text-align: center;
}

.wide-image-hanging-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 25px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
    min-width: 280px;
    margin: 0 auto;
}

.wide-image-hanging-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

/* Chat Images Section */
.chat-images-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
}

.chat-image-container {
    flex: 1;
    max-width: 50%;
}

.chat-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Design for Testimonials Section */
@media (max-width: 768px) {
    .testimonials-heading h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .whatsapp-chat-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .whatsapp-chat-container {
        max-width: 100%;
    }
    
    .whatsapp-chat-image {
        max-height: 600px; /* Increased height for mobile */
    }
    
    .testimonials-hanging-btn {
        padding: 20px 30px;
        font-size: 1.2rem;
        min-width: 250px;
        animation: swing 1.8s ease-in-out infinite;
    }
    
    .practical-growth-text h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-text p {
        font-size: 1.5rem; /* Increased from 1.2rem */
    }
    
    .experiment-text p {
        font-size: 1.3rem;
    }
    
    .chat-images-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .chat-image-container {
        max-width: 100%;
    }
    
    .chat-image {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .testimonials-heading h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .whatsapp-chat-wrapper {
        padding: 10px;
    }
    
    .whatsapp-chat-image {
        max-height: 500px; /* Increased height for small mobile */
    }
    
    .testimonials-hanging-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
        min-width: 220px;
        animation: swing 1.5s ease-in-out infinite;
    }
    
    .practical-growth-text h2 {
        font-size: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1.3rem; /* Increased from 1.1rem */
    }
    
    .experiment-text p {
        font-size: 1.1rem;
    }
    
    .chat-images-wrapper {
        padding: 10px;
    }
    
    .chat-image {
        max-height: 400px;
    }
    
    .wide-image-hanging-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
        min-width: 220px;
        animation: swing 1.5s ease-in-out infinite;
    }
}

/* Information Boxes Section */
.info-boxes-section {
    padding: 50px 10px;
    background-color: #fff;
    text-align: center;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.info-box {
    background: #fdf5ed;
    border: 2px solid #ff6600;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 120px;
    justify-content: center;
}

.info-box span {
    color: #ff6600;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.3;
}

.graduation-icon {
    font-size: 1.5rem;
    color: #8b5cf6;
}

/* Info Section CTA */
.info-section-cta {
    margin-bottom: 40px;
    text-align: center;
}

.info-section-hanging-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 25px 40px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
    min-width: 280px;
    margin: 0 auto;
}

.info-section-hanging-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

/* Payment Information */
.payment-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.secured-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.secured-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
}

.shield-icon {
    font-size: 1.2rem;
    color: #00aa00;
}

.payment-text {
    font-size: 1.1rem;
    color: #666;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-logo {
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #ddd;
}

.payment-logo.bhim {
    color: #0066cc;
}

.payment-logo.gpay {
    color: #00aa00;
}

.payment-logo.paytm {
    color: #0066cc;
}

.payment-logo.visa {
    color: #1a1f71;
}

.payment-logo.mastercard {
    color: #eb001b;
}

.payment-logo.maestro {
    color: #0066cc;
}

.payment-logo.rupay {
    color: #0066cc;
}

.payment-logo.paypal {
    color: #003087;
}

/* Responsive Design for Information Boxes Section */
@media (max-width: 768px) {
    .info-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .info-box {
        padding: 15px 10px;
        min-height: 100px;
    }
    
    .info-box span {
        font-size: 1rem;
    }
    
    .info-section-hanging-btn {
        padding: 20px 30px;
        font-size: 1.2rem;
        min-width: 250px;
        animation: swing 1.8s ease-in-out infinite;
    }
    
    .payment-row {
        gap: 15px;
    }
    
    .payment-logo {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .info-box {
        padding: 12px 8px;
        min-height: 80px;
    }
    
    .info-box span {
        font-size: 0.9rem;
    }
    
    .info-section-hanging-btn {
        padding: 18px 25px;
        font-size: 1.1rem;
        min-width: 220px;
        animation: swing 1.5s ease-in-out infinite;
    }
    
    .secured-text {
        font-size: 1.5rem;
    }
    
    .payment-text {
        font-size: 1rem;
    }
    
    .payment-row {
        gap: 10px;
    }
    
    .payment-logo {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 10px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 50%, #ffaa00 100%);
    text-align: center;
}

/* Special Offer Section */
.special-offer-section {
    margin-bottom: 50px;
}

.special-offer-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.special-offer-subtext {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.price-display-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.original-price-display {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-decoration: line-through;
}

.price-arrow {
    font-size: 1.8rem;
    color: #ff6600;
    font-weight: bold;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
}

/* FAQ Heading */
.faq-heading {
    margin-bottom: 40px;
}

.faq-heading h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ff8800;
    margin-bottom: 2px;
    border-radius: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    background: #ff9900;
}

.chevron-icon {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.question-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    min-width: 30px;
}

.question-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    flex: 1;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 10px;
    }
    
    .special-offer-heading {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .special-offer-subtext {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .price-display-box {
        padding: 20px 30px;
        gap: 12px;
    }
    
    .original-price-display {
        font-size: 1.6rem;
    }
    
    .price-arrow {
        font-size: 1.5rem;
    }
    
    .discounted-price {
        font-size: 2rem;
    }
    
    .faq-heading h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }
    
    .special-offer-heading {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .special-offer-subtext {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .price-display-box {
        padding: 15px 20px;
        gap: 10px;
        flex-direction: column;
        gap: 8px;
    }
    
    .original-price-display {
        font-size: 1.4rem;
    }
    
    .price-arrow {
        font-size: 1.3rem;
    }
    
    .discounted-price {
        font-size: 1.8rem;
    }
    
    .faq-heading h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .faq-question {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .chevron-icon {
        font-size: 1rem;
    }
    
    .question-number {
        font-size: 1rem;
        min-width: 25px;
    }
    
    .question-text {
        font-size: 1rem;
    }
}

/* Sticky Footer Section */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000; /* Black background */
    border-top: 3px solid #ff6600; /* Orange top border */
    z-index: 1000;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

 .footer-content {
     display: flex;
     justify-content: center; /* Center the content */
     align-items: center;
     max-width: 1400px;
     margin: 0 auto;
     gap: 120px; /* Increased gap between countdown and button */
 }

/* Footer Countdown Timer */
.footer-countdown {
    display: flex;
    gap: 15px;
    align-items: center;
}

.countdown-box {
    background: transparent;
    border: 2px solid #ff6600; /* Orange border */
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    min-width: 80px;
}

.countdown-box .countdown-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    display: block;
    line-height: 1;
}

.countdown-box .countdown-label {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

/* Footer BUY NOW Button */
.footer-cta {
    flex-shrink: 0;
}

.footer-buy-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
    min-width: 200px;
}

.footer-buy-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255,102,0,0.4);
    animation-play-state: paused;
}

/* Responsive Design for Sticky Footer */
@media (max-width: 768px) {
    .sticky-footer {
        padding: 12px 15px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-countdown {
        gap: 10px;
    }
    
    .countdown-box {
        padding: 10px 12px;
        min-width: 70px;
    }
    
    .countdown-box .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-box .countdown-label {
        font-size: 0.7rem;
    }
    
    .footer-buy-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
        min-width: 160px;
        animation: swing 1.8s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .sticky-footer {
        padding: 10px 12px;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-countdown {
        gap: 8px;
    }
    
    .countdown-box {
        padding: 8px 10px;
        min-width: 60px;
    }
    
    .countdown-box .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-box .countdown-label {
        font-size: 0.6rem;
    }
    
    .footer-buy-btn {
        padding: 10px 25px;
        font-size: 1rem;
        min-width: 140px;
        animation: swing 1.5s ease-in-out infinite;
    }
}



/* Complete Checkout Section */
.checkout-section {
    padding: 60px 10px;
    background: #f8f9fa;
}

.checkout-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left Side - Product Features */
.product-features-side {
    flex: 1;
    background: #f5e6d3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    text-align: center;
    margin-bottom: 30px;
}

.product-img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.features-list {
    margin-bottom: 30px;
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.features-list .checkmark {
    color: #ff6600;
    font-size: 1.3rem;
    font-weight: bold;
    min-width: 20px;
}

.features-list .feature-text {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
}

.product-cta {
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ff6600;
}

.cta-text {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6600;
    background: #fff3cd;
    padding: 10px 20px;
    border-radius: 10px;
}

/* Right Side - Order Form */
.order-form-side {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
}

.regular-price {
    margin-bottom: 10px;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.regular-price .price-amount {
    text-decoration: line-through;
    color: #999;
}

.today-price .price-amount {
    font-size: 2.5rem;
    color: #00aa00;
    font-weight: 900;
}

/* Order Form */
.order-form {
    margin-bottom: 30px;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.order-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.order-form input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}

.phone-input {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    z-index: 1;
}

.phone-input input {
    padding-left: 50px;
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
}

/* Upsell Offer */
.upsell-offer {
    background: #fff;
    border: 3px dotted #ff0000;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.upsell-checkbox {
    margin-bottom: 15px;
}

.upsell-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0066cc;
    margin-right: 10px;
}

.upsell-checkbox label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.upsell-price {
    margin-bottom: 20px;
}

.special-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
}

.upsell-features {
    margin-bottom: 15px;
}

.upsell-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.upsell-features .checkmark {
    color: #00aa00;
    font-size: 1.1rem;
    font-weight: bold;
}

.upsell-features .feature-item span:last-child {
    color: #333;
    font-size: 0.95rem;
}

.social-proof {
    margin-bottom: 10px;
}

.proof-text {
    color: #ff0000;
    font-size: 1rem;
    font-weight: bold;
}

.availability {
    text-align: center;
}

.availability-text {
    color: #666;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Order Summary */
.order-summary {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.summary-items {
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 0.95rem;
    color: #333;
    flex: 1;
}

.item-price {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #ff6600;
}

.total-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff6600;
}

/* Payment Method */
.payment-method {
    margin-bottom: 30px;
}

.payment-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #0066cc;
}

.payment-option label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.payment-info-box {
    background: #f0f8ff;
    border: 1px solid #00aa00;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.payment-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.cashfree-logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6600;
}

/* Complete Order Button */
.complete-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #00aa00 0%, #00cc00 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,170,0,0.3);
    margin-bottom: 25px;
}

.complete-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,170,0,0.4);
}

.btn-arrow {
    font-size: 1.5rem;
}

/* Security Seals */
.security-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.seal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.shield-icon {
    font-size: 1.5rem;
    color: #00aa00;
}

.seal-text, .norton-text, .ssl-text {
    font-size: 0.7rem;
    color: #666;
    font-weight: bold;
    text-align: center;
}

.security-note {
    text-align: center;
    margin-bottom: 30px;
}

.security-note span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Lifetime Updates */
.lifetime-updates {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border-radius: 10px;
    border: 2px solid #ff6600;
}

.updates-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.updates-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.updates-countdown .countdown-box {
    background: #ff6600;
    border: none;
    border-radius: 10px;
    padding: 15px 12px;
    min-width: 70px;
}

.updates-countdown .countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.updates-countdown .countdown-label {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive Design for Checkout Section */
@media (max-width: 768px) {
    .checkout-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-features-side,
    .order-form-side {
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-img {
        max-width: 250px;
    }
    
    .features-list .feature-text {
        font-size: 1rem;
    }
    
    .final-price {
        font-size: 2rem;
    }
    
    .today-price .price-amount {
        font-size: 2rem;
    }
    
    .upsell-offer {
        padding: 20px;
    }
    
    .upsell-checkbox label {
        font-size: 1rem;
    }
    
    .special-text {
        font-size: 1.1rem;
    }
    
    .complete-order-btn {
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .security-seals {
        gap: 15px;
    }
    
    .updates-countdown {
        gap: 10px;
    }
    
    .updates-countdown .countdown-box {
        padding: 12px 8px;
        min-width: 60px;
    }
    
    .updates-countdown .countdown-number {
        font-size: 1.3rem;
    }
 }

 @media (max-width: 480px) {
     .checkout-section {
         padding: 40px 10px;
     }
     
     .product-features-side,
     .order-form-side {
         padding: 25px 15px;
     }
     
     .product-title {
         font-size: 1.8rem;
     }
     
     .product-img {
         max-width: 200px;
     }
     
     .features-list .feature-text {
         font-size: 0.9rem;
     }
     
     .final-price {
         font-size: 1.8rem;
     }
     
     .today-price .price-amount {
         font-size: 1.8rem;
     }
     
     .upsell-offer {
         padding: 15px;
     }
     
     .upsell-checkbox label {
         font-size: 0.9rem;
     }
     
     .special-text {
         font-size: 1rem;
     }
     
     .complete-order-btn {
         padding: 15px;
         font-size: 1rem;
     }
     
     .security-seals {
         flex-direction: column;
         gap: 10px;
     }
     
     .updates-countdown {
         gap: 8px;
     }
     
     .updates-countdown .countdown-box {
         padding: 10px 6px;
         min-width: 50px;
     }
     
     .updates-countdown .countdown-number {
         font-size: 1.1rem;
     }
     
     .updates-countdown .countdown-label {
         font-size: 0.6rem;
     }
 }
