/* Interactive "Final Thoughts" Section */
.final-thoughts {
    background: linear-gradient(180deg, #00ffcc, #000);
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 60px 30px;
}

.final-thoughts:hover {
    background: linear-gradient(45deg, #000, #000);
}

/* Floating effect for "Final Thoughts" header */
.final-thoughts h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.final-thoughts h2:hover {
    transform: translateY(-5px);
    color: #00ff00;
}

.final-thoughts p {
    color: #fff;
    text-shadow: 0 0 15px rgba(38, 132, 255, 0.7);
}

/* Highlighted and glowing paragraph on hover in final thoughts */
.final-thoughts p:hover {
    color: #2980b9;
    text-shadow: 0 0 15px rgba(38, 132, 255, 0.7);
}

/* Responsive design */
@media (max-width: 768px) {
    .final-thoughts {
        padding: 30px 15px;
    }

    .final-thoughts h2 {
        font-size: 2rem;
    }

    .final-thoughts h3 {
        font-size: 1.5rem;
    }

    .final-thoughts p {
        font-size: 1rem;
    }
}

