@import "style.css";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #031026;
    color: #222;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

main {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
}

section {
    background: #071732;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #f8c146;
}

form {
    display: grid;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #f8c146;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgb(133, 141, 151);
}

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

button {
    background: #1b263b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #f8c146;
    color: #1b263b;
}

address {
    font-style: normal;
    text-align: center;
    line-height: 1.8;
    color: #f8c146;
}

.map-placeholder {
    background: #e9ecef;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    color: #555;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table,
th,
td {
    border: 1px solid #ffffff;
}

th,
td {
    padding: 12px;
    text-align: center;
}

th {
    background: #1b263b;
    color: white;
}

tr {
    background: #071732;
    color: #f8c146;
}

footer {
    background: #0d1b2a;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}
