/* Interested Section Styles */
.interested-section {
    background-color: #fff;
}

.interest-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.interest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.interest-card.active {
    background: var(--primary-color);
    color: #fff;
}

.interest-card.active h3,
.interest-card.active p {
    color: #fff;
}

.interest-card.active .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.interest-card.active .btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.interest-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.interest-card.active .interest-icon {
    background: rgba(255, 255, 255, 0.2);
}

.interest-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.interest-card.active .interest-icon i {
    color: #fff;
}

.interest-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.interest-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.interest-card .btn {
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.interest-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .interest-card {
        margin-bottom: 30px;
    }
}
