:root {
    --primary-blue: #0066cc;
    --primary-dark: #003d7a;
    --accent-orange: #ff6b00;
    --accent-yellow: #ffa500;
    --deep-navy: #0a1628;
    --dark-gray: #1a2332;
    --medium-gray: #2d3748;
    --light-gray: #e2e8f0;
    --off-white: #f7fafc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --success-green: #10b981;
    --warning-red: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-blue);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a:hover .logo-text {
    color: var(--primary-blue);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:not(.cta-nav):hover {
    color: var(--primary-blue);
}

.cta-nav {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--primary-dark);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-gray) 100%);
    padding: 10rem 0 7rem;
    margin-top: 4.5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 204, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 204, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(0, 102, 204, 0.2);
    border: 2px solid var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-link {
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.title-link:hover {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button:hover {
    background: transparent;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.main-content {
    background: var(--white);
    position: relative;
}

.article {
    padding: 5rem 0;
}

.content-section {
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.content-section:nth-child(even) {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 8px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-blue);
}

.section-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
    min-width: 80px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subsection-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 2.5rem 0 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-orange);
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.inline-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.inline-link:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* Special Section Styles */
.highlight-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 61, 122, 0.05) 100%);
    border-left: 5px solid var(--primary-blue);
    padding: 3rem !important;
}

.safety-section {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-left: 5px solid var(--accent-orange);
    padding: 3rem !important;
}

.conclusion-section {
    background: var(--deep-navy);
    color: var(--white);
    padding: 4rem !important;
    border-radius: 8px;
    margin-top: 3rem;
}

.conclusion-section .section-title {
    color: var(--white);
}

.conclusion-section .section-number {
    color: rgba(255, 255, 255, 0.2);
}

.conclusion-section p {
    color: rgba(255, 255, 255, 0.9);
}

.conclusion-section .lead-text {
    color: var(--white);
    border-left-color: var(--accent-orange);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    border: 3px solid var(--accent-orange);
}

.cta-box-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-box-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button-secondary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.cta-button-secondary svg {
    transition: transform 0.3s ease;
}

.cta-button-secondary:hover svg {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--dark-gray) 100%);
    padding: 6rem 0;
    color: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--primary-blue));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 204, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-blue);
}

.contact-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-cta {
    background: rgba(0, 102, 204, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.credentials-box {
    padding: 2.5rem;
}

.credentials-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.credentials-list li:hover {
    padding-left: 1rem;
    color: var(--primary-blue);
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.cta-button-large:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.cta-button-large svg {
    transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-blue);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0.8rem 0;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .cta-nav {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 8rem 0 5rem;
        margin-top: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .article {
        padding: 3rem 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .section-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .lead-text {
        font-size: 1.05rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .content-section:nth-child(even) {
        padding: 2rem;
    }
    
    .highlight-section,
    .safety-section {
        padding: 2rem !important;
    }
    
    .conclusion-section {
        padding: 2.5rem 1.5rem !important;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box-title {
        font-size: 1.5rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .credentials-box {
        padding: 2rem;
    }
    
    .credentials-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-end;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}