* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-container {
    text-align: center;
    max-width: 1000px;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

footer {
    padding: 2rem;
    text-align: center;
}

footer p {
    color: #ccc;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Response Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}