body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fdfaf6;
}

/* HEADER */
header {
    background: linear-gradient(to right, #ff512f, #dd2476);
    color: white;
    padding: 25px;
    text-align: center;
}

/* MENU */
nav {
    background: white;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

nav a:hover {
    background: #ff512f;
    color: white;
}

/* SECTION */
section {
    padding: 60px 10%;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #dd2476;
}

/* CARD LAYOUT */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.card-content {
    padding: 20px;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background: #dd2476;
    color: white;
    text-decoration: none;
    border-radius: 20px;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}