@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 10px;
    background-color: #f9f9f9;
}



.contact-section {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: orange;
    font-family: "Playwrite GB S", cursive;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    font-size: 1em;
    color: #fff;
    background-color: #ffab00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ff8b00;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ffab00;
    color: #333;
    margin-top: 20px;
}

footer .social-links a {
    color: #333;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}