/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Roboto+Slab:wght@100..900&display=swap');

body {
    font-family: 'Roboto Slab', serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #0a0f14; 
    color: #cdd6f4; 
}

header {
    background: linear-gradient(to right, #1e2030, #24273a); 
    color: #fff;
    padding: 2rem 1rem; 
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
}

.header-icon {
    height: 40px; 
    width: 40px;
    filter: brightness(0) invert(1); 
}

h1 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    font-weight: 500;
}

main {
    max-width: 900px; 
    margin: 3rem auto; 
    padding: 2.5rem 3rem; 
    background-color: #181926; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); 
}

.intro {
    font-style: italic;
    text-align: center;
    color: #a6adc8; 
    margin-bottom: 3rem; 
    font-size: 1.1em;
}

section {
    padding: 2.5rem 0; 
    border-bottom: 1px solid #363a4f; 
}

section:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem; 
}

h2 {
    font-family: 'Orbitron', sans-serif; 
    color: #89b4fa; 
    margin-top: 0;
    margin-bottom: 1.8rem; 
    border-bottom: 1px solid #45475a; 
    padding-bottom: 0.8rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1.3rem; 
}

strong {
    color: #fab387; 
    font-weight: 600; 
}

footer {
    text-align: center;
    margin-top: 3.5rem; 
    padding: 2rem 0; 
    color: #bac2de; 
    font-size: 0.95em;
    background-color: #11111b; 
}

/* Responsive adjustments */
@media (max-width: 768px) { 
    main {
        margin: 2rem auto;
        padding: 2rem 1.5rem; 
    }
    header {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    main {
        margin: 1.5rem 1rem; 
        padding: 1.5rem 1rem; 
    }
    header {
        padding: 1rem;
        flex-direction: column; 
        gap: 10px;
    }
    .header-icon {
        height: 35px;
        width: 35px;
    }
    .intro {
        margin-bottom: 2rem;
    }
    section {
        padding: 2rem 0;
    }
    h2 {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
}