* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero img {
    width: 100%;
    max-width: 100%;  /* Ensure the image does not exceed its container */
    height: auto;  /* Let the image height scale according to its aspect ratio */
    border-radius: 10px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.progress-bar {
    position: relative;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar .progress {
    height: 20px;
    width: 75%;
    background-color: #4CAF50;
    border-radius: 5px;
}

.contact h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.contact p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.contact a {
    color: #337ab7;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .content h1 {
        font-size: 22px;
    }

    .content p {
        font-size: 15px;
    }

    .hero img {
        width: 100%;
        height: auto;  /* Automatically adjust height to fit the width */
        border-radius: 10px;
       
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 20px;
    }

    .content p {
        font-size: 14px;
    }

    .hero img {
        width: 100%;
        height: auto;  /* Ensure full image visibility */
        border-radius: 10px;
        
    }

    .contact p {
        font-size: 14px;
    }
}
