:root {
    --bg-color: #000B25;
    --primary-color: #005E84;
    --secondary-bg: #000B25;
    --third-bg: #172138;
    --text-color: #FFFFFF;
    --text-dim: #B0B0B0;
}

.card {
    
    padding: 1.5rem;
}
img {
    width: 175px;
    height: 50px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--secondary-bg);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.container {
    padding: 2rem 10%;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2 {
    color: var(--primary-color);
    text-transform: uppercase;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.card {
    background-color: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-block {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.timeline {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    margin-top: 2rem;
}

.step {
    margin-bottom: 20px;
    position: relative;
}

.step span {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-item {
    background: #121212;
    padding: 1rem;
    margin-bottom: 10px;
    border-radius: 25px;
}

h4 { color: var(--primary-color); margin: 0 0 10px 0; }