*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body
{
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header
{
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header h1
{
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

nav ul
{
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li
{
    display: inline;
}

nav ul li a
{
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
}

nav ul li a:hover
{
    background-color: #555;
    border-radius: 5px;
}

main
{
    padding: 100px 20px;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.contact-form, .social-links
{
    background: white;
    padding: 30px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h2
{
    color: #444;
    font-size: 24px;
    margin-bottom: 20px;
}

form
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label
{
    font-weight: bold;
    text-align: left;
}

input, textarea
{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea
{
    resize: vertical;
}

button
{
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover
{
    background-color: #0056b3;
}

.social-links ul
{
    list-style: none;
    padding: 0;
}

.social-links ul li
{
    margin: 10px 0;
}

.social-links ul li a
{
    color: #007BFF;
    text-decoration: none;
    font-size: 18px;
}

.social-links ul li a:hover
{
    text-decoration: underline;
}

footer
{
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: 20px;
}
