
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 2rem 0 2rem 0; 
}

.header-padding {
    padding-top: 2rem;
}

.footer-padding {
    padding-bottom: 2rem;
}

header, footer {
    background: #212529;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

.section-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    height: 100%;
    border: 1px solid #dee2e6;
}

.info-box {
    background: #fff3cd; 
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border: 1px solid #ffeeba;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25em;
    margin: 0px;
    font-weight: normal;
}

.site-logo {
    background-image: url('../images/WWT.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 95px;
    height: 95px;
    float: left;
    margin-top: 0px;
}

nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover, nav a.active {
    color: #0d6efd;
    text-decoration: underline;
}

.container {
    max-width: 1400px;
    margin: 2rem auto;
}

h1, h2, h3 {
    color: #0d6efd;
    margin-top: 1.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p, li {
    line-height: 1.7;
}

ul {
    padding-left: 1.5rem;
}

pre, code {
    font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
    background: #23272b;
    color: #e9ecef;
    border-radius: 5px;
}

pre {
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

code {
    padding: 0.2em 0.4em;
    font-size: 1em;
}

.tech-info {
    background: #e3f2fd;
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
    color: #0d3a6a;
    font-size: 1.05em;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.6em 1.2em;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #0b5ed7;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.3rem;
    }
}



