:root {
    --primary-color: #269ccc;
    --secondary-color: #3d3d3f;
    --background-color: #f6f5f3;
    --section-bg-color: #ffffff;
    --text-color: #3d3d3f;
    --heading-color: #3d3d3f;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    line-height: 1.75;
}

header {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p a {
    color:  #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

header p a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: underline
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: var(--section-bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.container h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.container form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.container label {
    font-weight: bold;
    margin-bottom: 5px;
}

.container input, 
.container textarea, 
.container button {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

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

.container button {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.container button:hover {
    background: var(--secondary-color);
}

footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
