body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

.hero {
    background: url('assets/hero.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.title {
    text-align: center;
    margin-top: 40px;
}

.text {
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.6;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #eee;
}
