        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        h1,
        h2,
        h3,
        h5 {
            font-family: 'Montserrat', sans-serif;
        }

        .card {
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .card-img-top,
        .snap-img {
            object-fit: cover;
            height: 200px;
            width: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 0.375rem;
        }

        .snap-img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .text-justify {
            text-align: justify;
        }

        .btnHeading {
            color: #000;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .btnHeading .highlight {
            color: #FFB5C0;
        }

        .fText {
            color: #777;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btnFun {
            padding: 12px 25px;
            background-color: white;
            border: 2px solid #FFB5C0;
            color: #FFB5C0;
            text-transform: uppercase;
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 100px;
            display: inline-block;
        }

        .btnFun:hover {
            background-color: #FFB5C0;
            color: white;
        }