body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #f5f5f5;
}

header {
    text-align: left;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

header h1 {
    margin: 0 0 0 20px;
    font-size: 2.2rem;
}

.top-logo {
    text-align: left;
}

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../graphics/hero-background.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero h2 {
    font-size: 2rem;
    margin: 20px 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta {
    background: #A0D468;
    color: #333;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.benefits {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: white;
    font-size: 0.9rem;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');