/* GLOBAL STYLES */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}

h1, h2, h3 {
    margin: 0;
}

/* HERO SECTION */
.hero {
    background: #0a1a33; /* Navy */
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
}

.hero h2 {
    font-size: 22px;
    margin-top: 10px;
    color: #d4af37; /* Gold */
}

.tagline {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.subtext {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 25px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    margin: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #d4af37; /* Gold */
    color: #0a1a33;
}

.btn-secondary {
    background: white;
    color: #0a1a33;
}

/* SERVICES */
.services {
    padding: 50px 20px;
    text-align: center;
}

.service {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* SERVICE AREA */
.service-area {
    background: #e9e9e9;
    padding: 40px 20px;
    text-align: center;
}

/* CONTACT */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    margin: 10px;
}

/* FOOTER */
footer {
    background: #0a1a33;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
