/* Reset some default styles */
h1, h2, p, div {
    padding: 10px;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: antiquewhite;
    margin: 0;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form div {
    margin-bottom: 15px;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-button:hover {
    background-color: #555;
}

.social-button.twitter { background-color: #1DA1F2; }
.social-button.facebook { background-color: #3b5998; }
.social-button.linkedin { background-color: #0077b5; }
.social-button.instagram { background-color: #E1306C; }

/* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0; /* Ensure the footer starts at the left edge */
}

.footer-content {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footer-content a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

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