
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
}

.header {
    background-color: #f27a05;
    padding: 15px 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.container {
    padding: 50px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.logo img {
    width: 250px;
    height: auto;
}

.description {
    text-align: left;
    max-width: 600px;
    margin-bottom: 40px;
}

h2 {
    color: #f27a05;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto; 
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f5f5; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

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

.contact-form textarea {
    height: 150px; 
    resize: none; 
}

.submit-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff; 
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3; 
} */


input, textarea {
    width: 300px;
    padding: 10px;
    border: 1px solid #f27a05;
    border-radius: 5px;
    background-color: black;
    color: white;
}

textarea {
    height: 150px;
}

.submit-btn {
    background-color: #f27a05;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: #cc5200;
}

.footer {
    background-color: #f27a05;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    color: black;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.footer-container div {
    text-align: left;
}

.footer .credits {
    color: black;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

a {
    color: #f27a05;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
