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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #fcfcfc;
    color: #333;
}

/* Hero Banner Layout Block */
.hero-banner {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-container {
    max-width: 800px;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-banner p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #0070f3;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background-color: #0051a8;
    transform: translateY(-2px);
}
