    .containerss {
        max-width: 1000px; /* Maximum width of the container */
        margin: 0 auto; /* Center the container */
        padding: 10px; /* Padding around the content */
    }
    
    .hero {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
    }
    
    .hero img {
        width: 100%; /* Full width to fill the container */
        height: auto; /* Maintain aspect ratio */
        transition: transform 0.5s ease; /* Smooth zoom effect */
    }
    
    .hero img:hover {
        transform: scale(1.1); /* Zoom effect on hover */
    }
    
    .hero h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center the text */
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        font-size: 3em; /* Large font size */
        text-align: center;
        letter-spacing: 2px;
        transition: opacity 0.3s ease; /* Smooth fade-in/out effect */
    }
    
    .hero:hover h1 {
        opacity: 0.9; /* Slight fade effect on hover */
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2em; /* Smaller font size on mobile */
        }
    }

    body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .description {
            margin: 20px 0;
            line-height: 1.6;
        }
        .features {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .feature {
            flex: 1 1 30%;
            margin: 10px;
            padding: 15px;
            background: #eaeaea;
            border-radius: 5px;
            text-align: center;
        }
        .explore-button {
            display: inline-block;
            padding: 10px 20px;
            background: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .explore-button:hover {
            background: #218838;
        }
       
        @media (max-width: 768px) {
            .features {
                flex-direction: column;
            }
            .feature {
                flex: 1 1 100%;
            }
        }