* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 html {
    scroll-behavior: smooth;
  }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background-color: #06141b;
}

.contact{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-container {
    width: 100%;
    max-width: 500px;
}

.contact-card {
    background-color: #11212d;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.back-link {
    color: #fcbe29;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 0.8;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

p {
    color: #bbb;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: #fcbe29;
}

.contact-form input, 
.contact-form textarea {
    background-color: #06141b;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #fcbe29;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: #fcbe29;
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #e5ac25;
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(0);
}