* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #111;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px 10%;
    background: #222;
    color: white;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text button {
    display: block;
    margin-bottom: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.hero-images {
    display: flex;
    gap: 15px;
}

.placeholder-card {
    width: 120px;
    height: 180px;
    background: #ccc;
}

/* CATEGORIES */
.categories {
    padding: 50px 10%;
    text-align: center;
}

.category-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.category {
    background: white;
    padding: 40px;
    width: 18%;
    border: 1px solid #ddd;
}

/* CARD SECTIONS */
.cards-section {
    padding: 50px 10%;
    text-align: center;
}

.card-grid {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.card {
    background: white;
    padding: 20px;
    width: 30%;
    border: 1px solid #ddd;
}

.card-img {
    width: 100%;
    height: 200px;
    background: #ccc;
    margin-bottom: 15px;
}

.section-button {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px 10%;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

copyright {
    font-size: 12px;
}
