* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #022D5E;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    display: block;
    margin: 0 auto 30px;
    max-width: 150px;
    height: auto;
}

.logo-contact {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 100px;
    height: auto;
}

h1 {
    color: #FF8C00;
    margin-bottom: 60px;
    font-size: 40px;
    text-align: center;
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.text-500 {
    font-size: 1.8em;
}

.bold {
    font-weight: bold;
}

.color-neutral-800 {
    color: #e0e0e0;
}

p {
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.3em;
    text-align: center;
}

.description {
    color: #e0e0e0;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

button {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 10px 60px;
    font-size: 20px;
    font-weight: normal;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px auto;
    display: block;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

button:active {
    transform: translateY(-1px);
}

.subtitle {
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2em;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 17px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

.success-message {
    display: none;
    background: rgb(192 70 68 / 44%);
    color: #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    button {
        padding: 15px 40px;
        font-size: 1.1em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    label {
        font-size: 1em;
    }

    input, textarea {
        padding: 12px 15px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 40px;;
    }

    p {
        font-size: 0.9em;
    }

    button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .subtitle {
        font-size: 1em;
        margin-bottom: 25px;
    }

    label {
        font-size: 0.95em;
        margin-bottom: 6px;
    }

    input, textarea {
        padding: 10px 12px;
        font-size: 0.95em;
    }

    .back-link {
        font-size: 0.9em;
    }
}
