/* Overall Styling for the Bonus Feature Section */
.bonus-feature-section {
    background: radial-gradient(circle, rgba(17, 38, 53, 0.8) 30%, rgba(0, 20, 50, 0.9) 100%);
    color: #ffffff;
    padding: 60px 30px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 0 40px rgba(0, 120, 212, 0.5);
    font-family: 'Roboto', sans-serif;
}

/* Section Header */
.bonus-feature-section h1 {
    font-size: 3rem;
    color: #00d8ff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 216, 255, 0.6);
}

/* Content Layout */
.bonus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Text Styling */
.bonus-text {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 216, 255, 0.3);
    transition: transform 0.3s ease;
}

.bonus-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Image Styling */
.bonus-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.5);
}

.bonus-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.bonus-image:hover img {
    transform: scale(1.1);
}

/* Hover Animation on Text */
.bonus-text:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bonus-content {
        flex-direction: column;
        text-align: center;
    }

    .bonus-feature-section h1 {
        font-size: 2.5rem;
    }

    .bonus-text {
        margin-bottom: 20px;
    }

    .bonus-text p {
        font-size: 1rem;
    }
}
