.contact-container {
    min-height: calc(100vh - 200px);
    padding: 120px 20px 60px;
    background: #0a0a0a;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.section-description {
    color: #aaa;
    font-size: 16px;
    margin: 0;
}

.message-box {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.success-message {
    background-color: rgba(46, 213, 115, 0.1);
    border: 1px solid #2ed573;
    color: #2ed573;
}

.error-message {
    background-color: rgba(255, 51, 102, 0.1);
    border: 1px solid #ff3366;
    color: #ff3366;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3366;
    background: #121212;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: #ff3366;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.submit-button:hover {
    background: #e62958;
    transform: translateY(-1px);
}

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

.submit-button:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-header h1 {
        font-size: 28px;
    }
}