/* --- General & Reset --- */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #0056b3;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #555;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header ul li a:hover,
header ul li a.active {
    background-color: #e9ecef;
    color: #0056b3;
}

/* --- Hero Section (Homepage) --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1558030006-452657151d34?q=80&w=1974') no-repeat center center/cover;
    /* Placeholder image of a phoenix, symbolizing rebirth and a new empire. */
    height: 60vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

/* --- Content Sections --- */
.intro, .pillars, .content-section {
    padding: 4rem 0;
    text-align: center;
}

.pillars {
    background: #fff;
}

.pillar-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 30%;
}

.card h3 {
    margin-top: 0;
    color: #007bff;
}

/* --- Inner Pages --- */
.page-header {
    background: #343a40;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

.content-section {
    text-align: left;
    background: #fff;
    padding: 2rem;
    margin-top: -2rem; /* Pulls it up slightly */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #343a40;
    color: #ccc;
}