.urgency-banner {
    animation: 1s pulsate infinite alternate;
    background-color: #ff4757;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}

.container {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: rgb(60, 60, 60);
    font-size: 42px;
}

.hero-text .subtitle {
    color: gray;
    font-size: 20px;
}

.countdown {
    background-color: black;
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
}

.countdown h3 {
    text-align: center;
    color: rgb(255, 255, 255);
}

.countdown .timer {
    gap: 2rem;
    display: flex;
    justify-content: center;
}

.countdown .timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.countdown .timer-number {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.countdown .timer-label {
    color: rgb(193, 193, 193);
    font-size: 16px;
}

.cta-button {
    font-size: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    margin: 16px;
}

button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px #c03a2b51;
}

.product-image {
    flex: 1;
    height: 300px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-image img {
    width: 90%;
}

@keyframes pulsate {
    0% {
    opacity: 100%;
    }
    100%{
        opacity: 80%;
    }
}

.features {
    background-color: rgb(239, 239, 239);
    text-align: center;
}

.features h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgb(48, 48, 71);
    margin-bottom: 48px;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    display: flex;
}

.pricing h2 {
    font-size: 36px;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.pricing-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    padding: 32px 0;
    width: 600px;
}

.pricing-card h3 {
    color: black;
    font-size: 24px;
}

.pricing-card .original-price {
    text-decoration: line-through;
    color: #666;
}

.pricing-card .current-price {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 1rem 0;
}

.pricing-card .savings {
    color: white;
    background-color: green;
    padding: 10px 20px;
    border-radius: 16px;
}

.guarantee {
    text-align: center;
}

.guarantee-badge {
    background: #27ae60;
    font-size: 20px;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
}

.sticky-cta {
    position: fixed;
    inset: auto 10px 10px auto;
}