* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #162447;
    --secondary-color: #1363FF;
    --accent-color: #e74c3c;
    --text-color: #EFEFEF;
    --text-light: #9CA3AF;
    --bg-color: #0F1B2B;
    --white: #ffffff;
    --border-color: #374151;
    --surface-dark: #1B1B2F;
    --surface-dark-variant: #1F4068;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Decorative Element */
body::before {
    content: '';
    position: fixed;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(19, 99, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(19, 99, 255, 0.5);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: var(--surface-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-color);
}

.tagline {
    font-size: 0.9em;
    color: var(--text-light);
    font-style: italic;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: var(--surface-dark-variant);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(19, 99, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(19, 99, 255, 0.4);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero .tagline {
    font-size: 1.5em;
    color: var(--white);
    opacity: 0.95;
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* Content Sections */
.content-section {
    background: var(--surface-dark);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

h1 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
}

h3 {
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: var(--surface-dark-variant);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
    border: none;
    padding: 0;
}

.contact-card p {
    margin: 5px 0;
    text-align: left;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: var(--surface-dark-variant);
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
    border: none;
    padding: 0;
}

/* Footer */
footer {
    background: var(--surface-dark);
    color: var(--text-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-tagline {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: 600;
}

/* Utility Classes */
.last-updated {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 30px;
    font-style: italic;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav {
        justify-content: center;
        margin-top: 15px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero .tagline {
        font-size: 1.2em;
    }

    .content-section {
        padding: 25px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .contact-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4em;
    }

    .hero {
        padding: 50px 15px;
    }

    .content-section {
        padding: 20px;
    }
}

