* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f9fb;
    color: #333;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('../img/office.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 48px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

.hero p {
    color: #e2e8f0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00c3ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* CONTENT */
.content, .feature, .contact {
    padding: 80px 20px;
    text-align: center;
}

.feature {
    background: #eee;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 40px;
}

/* CARD */
.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* FORM */
form {
    max-width: 500px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

button {
    background: #111;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}