.simple-contact-form {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.simple-contact-form form {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.simple-contact-form form.fade-out {
    opacity: 0;
}

.simple-contact-form h2 {
    color: #EAE3D6;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-family: BasierSquareMono;
}

.simple-contact-form .form-field {
    margin-bottom: 1rem;
    width: 100%;
}

.simple-contact-form input,
.simple-contact-form select {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid #EAE3D6;
    color: #EAE3D6;
    font-family: BasierSquareMono;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.simple-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EAE3D6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.simple-contact-form option {
    background: #204030;
    color: #EAE3D6;
}

.simple-contact-form input::placeholder {
    color: #EAE3D6;
    opacity: 0.7;
}

.simple-contact-form button {
    width: 100%;
    padding: 1rem;
    background: #E6DFD7;
    color: #204030;
    border: none;
    cursor: pointer;
    font-family: BasierSquareMono;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.simple-contact-form button:hover {
    background: #517E76;
    color: #EAE3D6;
}

.simple-contact-form button:focus {
    background: #305D42;
    color: #EAE3D6;
}

.success-message {
    text-align: center;
    color: #EAE3D6;
    font-family: BasierSquareMono;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 4rem 2rem;
}

.success-message.visible {
    opacity: 1;
}

.success-message h2 {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.success-message p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.logo-cp {
    font-family: BasierSquareMono;
    font-size: 2rem;
    color: #EAE3D6;
    margin-top: 4rem;
    font-weight: normal;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .simple-contact-form {
        padding: 1.5rem;
    }
    
    .simple-contact-form h2 {
        font-size: 1.5rem;
    }
}
