* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f5ef;
}

.hero {
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url("images/magazine-hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}

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

.tagline {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #b8860b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.button:hover {
    background: #996f08;
}

.secondary {
    background: #444;
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.intro {
    text-align: center;
    font-size: 1.1rem;
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.year-card {
    background: white;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.year-card:hover {
    transform: translateY(-4px);
}

.year-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.featured-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-box img {
    width: 250px;
    max-width: 100%;
    border-radius: 6px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
}

#search {
    text-align: center;
}

