* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #eef3f8, #dce8f3);
    margin: 0;
    color: #1d2733;
}

.page-wrapper {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
}

.hero {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

h1, h2 {
    color: #17324d;
    margin-top: 0;
}

p {
    line-height: 1.6;
}

nav {
    margin: 20px 0;
}

nav a,
.button-link,
button {
    display: inline-block;
    background: #17324d;
    color: white;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin: 5px 5px 5px 0;
    font-size: 15px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

nav a:hover,
.button-link:hover,
button:hover {
    background: #25557f;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

form {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

label {
    display: block;
    margin-top: 14px;
    font-weight: bold;
    color: #23384d;
}

input,
select,
textarea {
    width: 100%;
    padding: 11px;
    margin-top: 5px;
    border: 1px solid #b8c6d3;
    border-radius: 8px;
    font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #25557f;
    box-shadow: 0 0 0 3px rgba(37, 85, 127, 0.15);
}

textarea {
    min-height: 120px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

th {
    background: #17324d;
    color: white;
    text-align: left;
}

th,
td {
    padding: 13px;
    border-bottom: 1px solid #e1e7ed;
}

tr:hover {
    background: #f5f9fc;
}

img {
    border-radius: 8px;
    max-width: 100%;
}

.message {
    background: #eef6ff;
    border-left: 5px solid #25557f;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.7s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(25px);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#map {
    height: 350px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 700px) {
    .page-wrapper {
        width: 95%;
        padding: 18px 0;
    }

    .hero {
        padding: 22px;
    }

    nav a,
    .button-link,
    button {
        width: 100%;
        text-align: center;
    }

    table {
        font-size: 13px;
    }

    th,
    td {
        padding: 8px;
    }
}