/* Reset */
body {
    margin: 0;
    font-family: "Georgia", serif;
    background-color: #0b0b0b;
    color: #f2f2f2;
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(180deg, #0f3d1f, #071b10);
    border-bottom: 3px solid gold;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 2px;
}

.motto {
    font-style: italic;
    opacity: 0.85;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    background-color: #111;
    padding: 12px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.seal-section {
    max-width: 700px;
    text-align: center;
}

.seal-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.seal-section h2 {
    margin-bottom: 10px;
    color: #d4af37;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #050505;
    font-size: 0.9em;
    opacity: 0.7;
}
.history-section {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.history-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.history-section h2 {
    color: #d4af37;
    margin-bottom: 15px;
}

.history-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}
.history-section h2:last-of-type {
    margin-top: 40px;
    color: #bfa75a;
}

.history-section p strong {
    color: #d4af37;
}

