    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
        color: #333;
        
    }

    header {
        background-color: #cc3263;
        background-image: url(Images/back/back\ \ \(4\).jpg);
        color: white;
        padding: 20px 0;
        text-align: center;
    }

    header .wt {
        color: black;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    header .mw {
        font-size: 40px;
        margin-top: -22px;
        color: rgb(245, 243, 243);
        margin-left: 10px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    nav ul {
        list-style-type: none;
        padding: 0;
    }

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        transition: 0.3s;
    }

    nav ul li a:hover {
        color: black;
    }

    .image-gallery {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .image-gallery img {
        width: 23%;
        border-radius: 8px;
        margin: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .image-gallery img:hover {
        transform: scale(1.05);
    }
    .content h2{
        font-size: 40px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    /* responsive mode */
    /*  */
    /*  */
    @media (max-width: 768px) {
        header .mw {
            font-size: 30px; /* Smaller font size for tablets */
        }
    
        nav ul li {
            display: block; /* Stack navigation items vertically */
            margin: 10px 0; /* Add spacing between items */
        }
    
        .image-gallery img {
            margin-left: 19px;
            width: 45%; /* Two images per row on tablets */
        }
    
        .content h2 {
            font-size: 30px; /* Smaller heading size for tablets */
        }
    }
    
    @media (max-width: 480px) {
        header .mw {
            font-size: 24px; /* Even smaller font size for mobile */
        }
    
        .image-gallery img {
            margin-left: 15px;
            width: 90%; /* One image per row on mobile */
        }
    
        .content h2 {
            font-size: 24px; /* Smaller heading size for mobile */
        }

    }




