html, body { height: 100%; }
body {
    font-family: Arial, sans-serif;
    background: url('IMG_0167.JPG') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
header {
    background: transparent;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}
main {
    max-width: 480px;
    margin: 2rem auto;
    background: rgba(255,255,255,0.92);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.back-btn {
    display: inline-block;
    background: #0078d7;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
    font-size: 1rem;
    cursor: pointer;
}
.back-btn:hover {
    background: #005fa3;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2rem;
}
label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #222;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: 5px;
    border: 1px solid #bbb;
    font-size: 1rem;
    margin-top: 0.2rem;
    box-sizing: border-box;
    background: #f9f9f9;
    transition: border 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border: 1.5px solid #0078d7;
    outline: none;
    background: #fff;
}
textarea {
    resize: vertical;
    min-height: 110px;
    max-height: 300px;
}
button[type="submit"] {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.contact-alt {
    margin-top: 2rem;
}
.contact-alt ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-alt li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
@media (max-width: 600px) {
    main {
        padding: 1.2rem 0.5rem;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');
.hero-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 1.5s infinite alternate;
}
@keyframes bounce {
    to { transform: translateY(-10px); }
}
.about-section {
    margin-bottom: 2rem;
}
.team-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.team-member {
    background: rgba(0,120,215,0.08);
    border-radius: 8px;
    padding: 1rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
