* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #313131;
    background: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #000000;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .logo .logo-img {
    height: 50px;
}

header .logo h1 {
    font-size: 1.5rem;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #007cba;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #313131 0%, #0a0a0a 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero .hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero .hero-subhead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero .hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .welcome {
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #007cba;
    color: #ffffff;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #006ba1;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #eee;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature p {
    color: #313131;
}

/* CTA Secondary Section */
.cta-secondary {
    padding: 4rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.cta-secondary h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-secondary p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-secondary .cta-links {
    margin-bottom: 2rem;
}

.cta-secondary a {
    color: #ffffff;
    text-decoration: underline;
}

.cta-secondary a:hover {
    color: #007cba;
}

/* Page Header */
.page-header {
    background: #313131;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
}

/* Our Story */
.our-story {
    padding: 4rem 0;
    background: #ffffff;
}

.our-story h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.our-story p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #313131;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #eee;
}

.team h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: #007cba;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-member p {
    color: #313131;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-form-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
}

.contact-form-section p {
    color: #313131;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #313131;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
}

/* Login Section */
.login-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    background: #eee;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-box h2 {
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: center;
}

/* Footer */
footer {
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

/* Portal Section */
.portal-section {
    padding: 4rem 0;
    min-height: 60vh;
    background: #ffffff;
}

.portal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
    text-align: center;
}

.portal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #313131;
    text-align: center;
}

.portal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.portal-btn {
    display: block;
    background: #b8935d;
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.portal-btn:hover {
    background: #d4aa6a;
}

.portal-message {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff3cd;
    border: 1px solid #b8935d;
    padding: 1.5rem;
    border-radius: 5px;
}

.portal-message p {
    color: #856404;
    margin: 0;
    text-align: center;
}

.login-status {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    color: #313131;
}

.login-status a {
    color: #007cba;
    text-decoration: none;
}

.login-status a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .portal-section h1 {
        font-size: 2rem;
    }

    .portal-buttons {
        max-width: 100%;
    }
}
