body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0047bb, #0073e6);
    color: #333;
}

.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 100px;
    z-index: 1000;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    color: white;
}

.hero-icon {
    width: 100px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

.contact-form {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.form-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #ff6600;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.map {
    padding: 50px 20px;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
}