body {
    margin: 0;
    background: #303030;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #eaeaea;
    font-family: "Galindo", sans-serif;
}

.top-menu {
    width: 100%;
    /* background: #ffd500; */
    padding: 20px 0;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); */
    border-bottom: #333;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 1.1rem;
}

a {
    color: #eaeaea;
}

.top-menu a {
    /* color: #eaeaea; */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.top-menu a:hover {
    color: #f9d802;
}

.center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 500px;
    height: 500px;
    /* background: #ffd500; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07); */
    margin-bottom: 24px;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    user-select: none;
}

.logo-img {
    display: block;
    width: 100%;
    height: auto;
}

footer {
    text-align: center;
    padding: 20px 0;
    /* background: #f9a602; */
    font-size: 1rem;
}

form {
    width: 80%;
    max-width: 600px;
    margin: 24px auto;
    /* border: 1px solid #ccc; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07); */
}


form label {
    /* display: inline-block; */
    margin-top: 50px;
}

form input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    background: #333;
    color: #eaeaea;
    outline: none;
    margin-top: 10px;
    font-family: "Galindo", sans-serif;
}

form textarea {
    margin-top: 10px;
    width: 100%;
    height: 150px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: sans-serif;
    background: #333;
    color: #eaeaea;
    outline: none;
    font-family: "Galindo", sans-serif;
}


form button[type="submit"] {
    background: #1c1c1c;
    color: #ffd500;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 2em;
    width: 100%;
}

form button[type="submit"]:hover {
    background: #f9d802;
    color: #333;
}

.policy {
    max-width: 800px;
    margin-left: 20px;
    margin-right: 20px;
}