:root {
    --primary-blue: #0056b3; /* Deep Blue */
    --accent-blue: #e6f0ff; /* Light Blue Background tint */
    --text-color: #0f172a; /* Dark Navy/Slate for text */
    --white: #ffffff;
    --outline-color: #000; /* As per screenshot outline style, usually black or very dark grey */
    --font-main: 'Codec Pro', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Nav */
header {
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
    align-items: center;
}

nav a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

/* Main Layout */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
    flex: 1;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    margin-top: -2rem;
}

/* Badge */
.badge-container {
    margin-bottom: 1rem;
    cursor: pointer;
    transition: opacity 0.2s, color 0.2s;
    align-items: center;
}

.badge-container:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.badge {
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--outline-color);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.badge-text {
    color: var(--text-color);
    opacity: 0.8;
    margin-left: 0.3rem;
    font-weight: 600;
}

/* Content */
.content {
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

.lead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content p {
    margin-bottom: 1.0rem;
    color: #475569; /* Slightly lighter slate for body text */
}

/* Decoration (optional, to match the "branches" in screenshot if needed, but keeping it clean for now) */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at top right, var(--accent-blue) 0%, transparent 40%);
    opacity: 0.5;
}

/* Footer */
footer {
    padding: 2rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    opacity: 0.7;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    font-size: 0.85rem;
    color: #64748b;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: #64748b;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    header {
        padding: 1.5rem;
    }

    main {
        padding: 3rem 1.25rem;
    }

    .hero-logo {
        max-width: 280px; /* Smaller logo on mobile */
        margin-top: -1rem;
    }

    .lead {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
