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

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #1b1b1b;
    line-height: 1.6;
}

header.hero-section {
    background: url('images/cena-hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #f5f5f5;
}

header.hero-section .hero-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

header.hero-section .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

header.hero-section .cta-button {
    padding: 1rem 2rem;
    background-color: #ff4500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

header.hero-section .cta-button:hover {
    background-color: #d13c00;
}

.section {
    padding: 2rem;
    background-color: #222;
    margin: 2rem 0;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ff4500;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card {
    background-color: #333;
    padding: 1rem;
    border-radius: 5px;
    max-width: 300px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1rem;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}