/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('/wp-content/uploads/2025/hero-background.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary { background-color: #0073e6; }
.btn-secondary { background-color: #4CAF50; }
.hero-buttons a:hover { opacity: 0.8; }

/* Promo Banner */
.promo-banner {
    background-color: #ffe600;
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.how-step {
    margin: 0 20px;
}

.how-step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 1.2em;
}

/* Category Sections */
.category-section {
    padding: 40px 20px;
    text-align: center;
}

.category-section h2 {
    margin-bottom: 20px;
}

.view-all {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.view-all:hover {
    background-color: #005bb5;
}
