
    /* General Styles */
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    h1, h2, h3 {
        text-align: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    h1 { 
        margin-top: 2rem; 
    }
    p { line-height: 1.6; }
    .container{
        padding: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Header */
    .animated-header {
        /* animation: headerFadeScale 1s ease-out forwards; */
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem;
    }
    @keyframes headerFadeScale {
        0% { opacity: 0; transform: scale(0.95); }
        70% { opacity: 1; transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    .header-title { font-size: 2rem; margin-bottom: 0.2rem; }
    .header-subtitle { font-size: 1rem; color: #555; }

    /* Notifications */
    .notification-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin: 1rem 0;
    }
    .notification-bubble {
        background: rgba(255, 255, 255, 0.9);
        color: #1a1a1a;
        padding: 12px 18px;
        border-radius: 15px;
        font-size: 15px;
        max-width: 320px;
        text-align: left;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);

        /* Initial hidden state */
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .notification-bubble strong {
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
    }
    .notification-bubble small {
        display: block;
        margin-bottom: 4px;
        font-size: 13px;
        color: #555;
    }
    .notification-bubble span {
        font-size: 12px;
        color: #888;
    }
    /* When visible */
    .notification-bubble.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    /* When disappearing */
    .notification-bubble.hide {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    /* Section Layout */
    .section-container-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .section-container-col {
        flex: 1;
        min-width: 260px;
    }
    .section-container-col img {
        width: 100%;
        max-width: 260px;
        border-radius: 20px;
        padding: 10px;
        display: block;
        margin: 0 auto;
    }

    /* Fade-in on scroll */
    .fade-in-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile styles */
    @media (max-width: 768px) {
        .section-container-row {
            flex-direction: column;
            text-align: center;
        }
        .section-container-col img {
            max-width: 200px;
        }
        .notification-bubble {
            max-width: 90%;
            font-size: 14px;
        }
        .notification-bubble strong { font-size: 15px; }
    }
    .for-business-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: fadeSlideUp 1.2s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.for-business-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ff4d00; /* Matches your SaleDrop brand color */
}

.for-business-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.for-business-card .action-btn {
    cursor: pointer;
    transition: 0.3s
}

.action-btn:hover {
    transform: scale(1.05);
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .for-business-card {
        padding: 1.5rem;
        margin: 1.5rem;
    }
    .for-business-card h3 {
        font-size: 1.3rem;
    }
    .for-business-card p {
        font-size: 0.95rem;
    }
}




.for-business-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: fadeSlideUp 1.2s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}


.for-business-card p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}



@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .for-business-card {
        padding: 1.5rem;
        margin: 1.5rem;
    }
    .for-business-card h3 {
        font-size: 1.3rem;
    }
    .for-business-card p {
        font-size: 0.95rem;
    }
}