/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header Styles */
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
}

/* Main Content Styles */
main {
    padding: 30px;
    background-color: #fff;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Info Box Styles */
.info-box {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

h1, h2 {
    font-size: 24px;
}

/* Services List */
.services ul {
    list-style-type: none;
    padding: 0;
}

.services li {
    margin: 10px 0;
}

.services a {
    text-decoration: none;
    color: #4CAF50;
    font-size: 18px;
}

.services a:hover {
    color: #45a049;
}

/* Support Info */
.support-info {
    background-color: #f7f7f7;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 16px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}
