.contact-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.contact-card {
    width: 100%;
    max-width: 400px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-header {
    text-align: center;
    padding: 24px 24px 0 24px;
}

.contact-icon {
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: #4ade80;
}

.contact-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.contact-subtitle {
    margin: 0 0 24px 0;
    font-size: 14px;
    color: #a0a0a0;
}

.contact-form {
    padding: 0 24px 24px 24px;
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.optional-label {
    color: #a0a0a0;
    font-size: 12px;
    font-weight: normal;
    margin-left: 4px;
}

.form-input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-size: 16px;
    font-family: inherit;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-textarea {
    display: block;
    width: 100%;
    min-height: 120px;
    padding: 12px;
    font-size: 16px;
    font-family: inherit;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666666;
}

.contact-button {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-color: #4ade80;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-button:hover {
    background-color: #22c55e;
}