@import "index.css";

body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

top {
    background: var(--accent, #2c3e50);
    color: white;
    padding: 1rem;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--accent, #2c3e50);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

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

button {
    padding: 0.9rem;
    background: var(--accent, #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

button:hover {
    background: #1a252f;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.contact-info p {
    margin: 0.3rem 0;
}