/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #000; /* Black background */
    color: #fff; /* White text */
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    background: #000;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #0055ff;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

.btn-secondary {
    background: #444;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

/* BELOW THE FOLD SECTIONS */
.section {
    background: #111; /* Dark gray box background */
    margin: 40px auto;
    padding: 40px;
    width: 80%;
    border-radius: 12px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section p {
    font-size: 20px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #000;
    color: #777;
    font-size: 14px;
}
