    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .main-container {
        flex: 1;
    }

    .section-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 280px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .section-card:hover {
        transform: scale(1.03);
    }

    .section-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        filter: brightness(70%);
        transition: filter 0.3s ease;
    }

    .section-card:hover img {
        filter: brightness(55%);
    }

    .section-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 20px;
    }

    .section-overlay h2 {
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
    }

    .section-overlay p {
        font-size: 1rem;
        max-width: 80%;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    }

    .section-overlay .btn {
        margin-top: 15px;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
    }
    

