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

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

header.hero {
    background: linear-gradient(135deg,#ff9a9e,#fad0c4);
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

header.hero h1 {
    font-size: 64px;
    margin: 0;
}

header.hero p {
    font-size: 22px;
    margin: 15px 0 30px;
}

header.hero a.button {
    padding: 15px 30px;
    background: #6a11cb;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

header.hero a.button:hover {
    background: #2575fc;
    transform: scale(1.05);
}

section {
    padding: 60px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card h3 {
    margin-top: 0;
    color: #6a11cb;
}

.card p {
    color: #555;
}

footer {
    text-align: center;
    padding: 25px;
    background: #6a11cb;
    color: #fff;
}