.section {
    margin-bottom: 40px;
}
.section-title {
    font-size: 2rem;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.section-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
}
.faq-answer {
    margin-bottom: 10px;
}

.card {
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card-header {
    background-color: #007bff;
    color: #fff;
    font-size: 1.25rem;
}
.card-body {
    padding: 20px;
    background-color: #fff;
    color: #333;
}
.card-footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 10px;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instruction-list {
    margin-left: 20px;
}
.instruction-list li {
    margin-bottom: 10px;
}
.contact-info {
    font-size: 1.1em;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9;
}

.offer-description {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.offer-description h4 {
    color: #333;
}

.package-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
}
.package-card h5 {
    margin-top: 0;
}
.special-offer {
    background-color: #e9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #d0f0f0;
    text-align: center;
}
.special-offer h4 {
    margin-bottom: 15px;
}

.custom-loader {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}
.custom-spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    right: 50%;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.buy-now-section {
    background-color: #f4f4f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.payment_details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
}

.payment-method img {
    width: 50px;
    height: auto;
    margin-right: 15px;
    border-radius: 50%;
}
.payment-method span {
    font-weight: 600;
    margin-right: 10px;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-title {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.payment-info p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.package-details-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 10px;
    margin-bottom: 30px;
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.package-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-top: 10px;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
    display: block;
    margin-top: 0.25rem;
}

.congratulations-message {
    position: relative;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none; /* Hide initially, will be shown via JavaScript */
}

.congratulations-message h4 {
    color: #28a745;
    margin-bottom: 10px;
}

.congratulations-message p {
    margin-bottom: 20px;
}

.flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden; /* Ensure flowers do not overflow */
}

.flower {
    position: absolute;
    background-image: url('https://i.pinimg.com/originals/c5/20/96/c520963a50d5847453f3395aaa0d4ffb.gif');
    background-size: contain;
    width: 30px;
    height: 30px;
    opacity: 0.8;
    animation: fly 6s linear infinite;
}

@keyframes fly {
    from {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}

/* Add responsive design adjustments */
@media (max-width: 768px) {
    .package-details-card {
        padding: 15px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .package-info p {
        font-size: 0.9rem;
    }

    .package-price {
        font-size: 1.2rem;
    }
}
