body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h4 {
    font-size: 20px;
    text-align: left;
    color: #2c3e50;
}

p {
    text-align: justify;
}

ul {
    text-align: justify;
}

a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.cta-button {
    background-color: #ff9900;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    margin-top: 20px;
   }

.cta-button:hover {
    background-color: #e68a00;
    text-decoration: none;
}

 /* Ensures the image scales correctly */
        .responsive-image {
            max-width: 100%;
            height: auto;
            display: block; /* Prevents unwanted spacing below the image */
            margin: auto; /* Centers the image */
        }

        /* Optional: Adjust image size specifically for smaller screens */
        @media (max-width: 768px) {
            .responsive-image {
                width: 90%; /* Adjusts width for mobile */
            }
        }

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-top: 30px;
}

footer nav {
    margin-top: 10px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}
