/* UseTheData Shared Theme */

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7fafc;
    color: #2d3748;
    line-height: 1.7;
    font-size: 16px;
}

/* Header */
.site-header {
    background-color: #1a365d;
    color: white;
    padding: 0.75rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .site-name {
    font-weight: 400;
    font-size: 1.25rem;
    color: white;
    text-decoration: none;
}

.site-header .site-name:hover {
    opacity: 0.9;
}

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

.header-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
}

.header-links a:hover {
    color: white;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Main content */
main {
    padding: 2.5rem 0 3rem;
}

/* Sections */
.section {
    margin-bottom: 2.5rem;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a365d;
    border-bottom: 2px solid #bee3f8;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1rem;
}

.section p:last-child {
    margin-bottom: 0;
}

/* Links in content */
main a {
    color: #2c5282;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #1a365d;
    color: rgba(255,255,255,0.85);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .header-links {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
}
