body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}
.bg-pattern {
    background-image: url('images/image-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 400;
}
.cta:hover {
    background-color: #0056b3;
}
.vivid-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

div.alert-success {
    color: #155724; /* Dark green for text */
    background-color: #d4edda; /* Light green background */
    border: 1px solid #c3e6cb; /* Light green border */
    padding: 15px; /* Space inside the alert box */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px; /* Space between alerts */
    font-family: Arial, sans-serif; /* Font style */
}

div.alert-error {
    color: #721c24; /* Dark red for text */
    background-color: #f8d7da; /* Light red background */
    border: 1px solid #f5c6cb; /* Light red border */
    padding: 15px; /* Space inside the alert box */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px; /* Space between alerts */
    font-family: Arial, sans-serif; /* Font style */
}

div.alert-info {
    background-color: #d9edf7; /* Light blue background */
    color: #31708f;           /* Darker blue text for contrast */
    border: 1px solid #bce8f1; /* Light blue border */
    padding: 5px 5px;
    margin-bottom: 10px;
    border-radius: 5px;        /* Rounded corners */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

footer {
    text-align: center;
    padding: 5px;
    margin-top: 5px;
    font-size: 15px;
    color: #555;
}

footer strong {
    color: #000;
}