@charset "UTF-8";

:root {
    --primary-blue: #0468BF;
    --accent-yellow: #F2B705;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Hero --- */
header {
    background-color: var(--white);
    border-bottom: 4px solid var(--accent-yellow);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem 0;
    text-align: center;
}

header h1 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.logo-img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

/* --- Sections General --- */
section {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

h2 {
    color: var(--primary-blue);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: justify;
}

/* --- History Section --- */
.history-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* --- Values Grid (Cards) --- */
.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0;
}

.values-list > li {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 5px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.values-list > li:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-yellow);
}

.values-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

blockquote {
    background-color: #f0f7ff;
    border-left: 4px solid var(--accent-yellow);
    margin: 1rem 0;
    padding: 1rem;
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
}

/* --- Location Section --- */
.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.location-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

address {
    font-style: normal;
    color: var(--text-light);
}

ul {
    list-style: none;
}

/* --- Navigation Links (Bottom) --- */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    background-color: var(--primary-blue);
}

.nav-links h3 {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    background-color: #fff;
    color: var(--primary-blue);
}

/* --- Images & Video --- */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

hr {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 2rem 0;
}
