/* /css/static-style.css */
:root {
    --primary-color: #4F46E5;
    --dark-color: #111827;
    --light-color: #F9FAFB;
    --text-color: #374151;
}
body { font-family: 'Inter', sans-serif; margin: 0; color: var(--text-color); background-color: var(--light-color); line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.simple-header { padding: 20px 0; background: #fff; text-align: center; border-bottom: 1px solid #E5E7EB; }
.logo-img { height: 150px; width: auto; }

.static-wrapper { padding: 60px 0; }
.static-container { background-color: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); max-width: 800px; margin: auto; }
.static-container h1 { font-size: 2.8em; color: var(--dark-color); margin-top: 0; }
.static-container h2 { font-size: 1.8em; color: var(--dark-color); margin-top: 40px; border-bottom: 1px solid #E5E7EB; padding-bottom: 10px; }
.static-container p, .static-container li { font-size: 1.1em; color: var(--text-color); }
.static-container a { color: var(--primary-color); text-decoration: none; }
.static-container a:hover { text-decoration: underline; }

.main-footer { text-align: center; padding: 40px 0; }