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

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Helvetica", "Arial", sans-serif;
    background-color: #fff;
    color: white;
}

.hero-bg {
    position: relative;
    background-image: url('images/5.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.main-brand-mark {
    /* Use clamp so it scales beautifully from mobile to desktop */
    width: clamp(280px, 60vw, 700px); 
    height: auto;
    margin-bottom: 2rem;
}

.hero-pillars {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5rem;
}

.clients-message {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: #fff;
    text-transform: uppercase;
}
