body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
    color: #007acc;
    text-align: center;
}
.contact-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
.contact-section h2 {
    color: #333;
}
a {
    color: #007acc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.homeBTN{
    background-color: #007acc;
    color: white;
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 550;
    border-radius: 12px;
    user-select: none;
    transition: 0.3s;
}
.homeBTN a{
    text-decoration: none;
    color: white;
}
.homeBTN:hover{
    box-shadow: 0 2px 4px black;
}