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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    color: #7eff4f;
    text-shadow: 0 0 12px rgba(127, 255, 79, 0.5);
}

h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Header */
header.hero {
    background: radial-gradient(ellipse at center, #131313 0%, #0a0a0a 100%);
    text-align: center;
    padding: 4rem 2rem;
    background-image: url('../images/kawasaki-hero.png');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #1f1f1f;
}

header.hero p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 1rem;
}

/* Section styling */
section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: auto;
    background: #111;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(127, 255, 79, 0.05);
    transition: all 0.3s ease-in-out;
}

section:hover {
    box-shadow: 0 0 20px rgba(127, 255, 79, 0.15);
}

/* Image styling */
section.highlight img {
    display: block;
    max-width: 100%;
    margin: 1rem auto;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* CTA Button */
.cta {
    display: inline-block;
    background-color: #7eff4f;
    color: #111;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta:hover {
    background-color: #66dd44;
    color: #000;
    box-shadow: 0 0 10px rgba(127, 255, 79, 0.5);
}

/* List styling */
ul {
    margin-top: 1rem;
    padding-left: 1.8rem;
}

ul li {
    color: #7eff4f;
    margin-bottom: 0.6rem;
    list-style-type: square;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    background-color: #0f0f0f;
    color: #888;
    border-top: 1px solid #1f1f1f;
}
