* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    color: #1B1B1B;
    background: #F9F6EE;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #002147;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 33, 71, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    color: #F9F6EE;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
}

.tagline {
    color: #B87333;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #F9F6EE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: Calibri, sans-serif;
}

.nav-links a:hover {
    color: #B87333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #002147 0%, #1a3a5c 100%);
    color: #F9F6EE;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23B87333" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
    color: #F9F6EE;
}

.hero .tagline-large {
    font-size: 1.3rem;
    color: #B87333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Calibri, sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #8B0000;
    color: #F9F6EE;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: Calibri, sans-serif;
    border: 2px solid #8B0000;
}

.cta-button:hover {
    background: transparent;
    color: #8B0000;
    border-color: #8B0000;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #002147;
    font-family: 'Times New Roman', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #8B0000;
    margin-bottom: 3rem;
    font-family: Calibri, sans-serif;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #B87333;
    margin: 15px auto 0;
}

/* Course Areas */
.course-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #B87333;
    box-shadow: 0 5px 20px rgba(0, 33, 71, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #002147;
    border-radius: 8px 8px 0 0;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.15);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: #002147;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #F9F6EE;
    font-size: 1.8rem;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #002147;
    font-family: 'Times New Roman', serif;
}

.course-card p {
    color: #1B1B1B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: Calibri, sans-serif;
}

.course-topics {
    list-style: none;
    padding: 0;
}

.course-topics li {
    padding: 0.3rem 0;
    color: #8B0000;
    font-family: Calibri, sans-serif;
    position: relative;
    padding-left: 1.2rem;
}

.course-topics li::before {
    content: '▪';
    color: #B87333;
    position: absolute;
    left: 0;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #1B1B1B;
    font-family: Calibri, sans-serif;
}

/* Disclaimer Section */
.disclaimer {
    background: #002147;
    color: #F9F6EE;
    padding: 40px 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 8px;
    border: 1px solid #B87333;
}

.disclaimer h3 {
    color: #B87333;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
}

.disclaimer p {
    font-family: Calibri, sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer ul {
    margin-left: 2rem;
    font-family: Calibri, sans-serif;
}

.disclaimer li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #B87333;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #002147;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
}

.contact-info p {
    color: #1B1B1B;
    font-family: Calibri, sans-serif;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #002147;
    color: #F9F6EE;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #B87333;
}

footer p {
    font-family: Calibri, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .course-areas {
        grid-template-columns: 1fr;
    }

    .course-card {
        padding: 2rem;
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    color: #F9F6EE;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #002147;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
}