/* ========================= SH Business Management Professional Corporate Style =========================== */

/* Reset and basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Links */
a {
    color: #004080;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: #004080;
    color: #fff;
    padding: 20px 0;
}
header h1 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
}
nav ul li a.active,
nav ul li a:hover {
    background-color: #0073e6;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #e6f2ff;
    border-radius: 10px;
    margin-bottom: 40px;
}
.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #004080;
}
.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.services h3 {
    color: #004080;
    margin-bottom: 25px;
    font-size: 28px;
    text-align: center;
}
.services ul {
    list-style: disc inside;
    font-size: 18px;
    line-height: 2;
}

/* Partner-led Section */
.partner-led {
    background-color: #f1f7fc;
    padding: 35px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.partner-led h3 {
    font-size: 26px;
    color: #004080;
    margin-bottom: 20px;
}
.partner-led p,
.partner-led ul {
    font-size: 17px;
    line-height: 1.8;
}

/* Contact / Instant Email */
.contact {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.contact h3 {
    color: #004080;
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
}
.contact p,
.contact a {
    font-size: 18px;
    line-height: 1.8;
}
.contact a {
    color: #004080;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #00264d;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
}
footer p {
    margin-bottom: 10px;
    font-size: 15px;
}
footer a {
    color: #66b3ff;
    text-decoration: underline;
}
footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 10px;
}
footer ul li {
    margin: 0 10px;
    font-size: 15px;
}
