﻿:root {
    --line-color: #eee;
    --text-muted: #555;
    --primary-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    padding: 0 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: 40px 0;
}

h1 {
    font-size: 2rem;
    margin: 1rem 0;
    line-height: 1.2;
}

h2, h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.text-muted {
    color: var(--text-muted);
}

ul.text-muted {
    padding-left: 1.8rem;
    line-height: 1.6;
}

ul.text-muted li {
    margin-bottom: 15px;
}

.decorative-line {
    border: none;
    height: 6px;
    background-color: var(--line-color);
    border-radius: 5px;
    margin: 0 auto;
}

.label-divider {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    margin: 20px 0 30px 0;
}

a {
    color: #0073e6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
}
    
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-small-centered {
    display: inline-block;
    margin: 0 auto 20px auto;
    width: 120px;
}

.img-large-centered {
    display: block;
    margin: 0 auto 40px auto;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
    }

    h2, h3 {
        font-size: 1.2rem;
    }

    .section {
        padding: 20px 0;
    }
}