body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', 'Arial', sans-serif;
background: #f5f7fa;
color: #222;
}
.container {
max-width: 900px;
margin: 0 auto;
background: #fff;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
display: flex;
flex-direction: column;
align-items: center;
padding: 32px 0 16px 0;
background: #e6ecf3;
}
.logo {
font-size: 2rem;
font-weight: 600;
color: #1a355e;
letter-spacing: 1px;
margin-bottom: 8px;
}
nav ul {
display: flex;
gap: 32px;
list-style: none;
padding: 0;
margin: 0;
}
nav a {
text-decoration: none;
color: #1a355e;
font-weight: 500;
font-size: 1.05rem;
padding: 4px 0;
transition: color 0.2s;
}
nav a.active,
nav a:hover {
color: #2d4c7c;
border-bottom: 2px solid #2d4c7c;
}
main {
flex: 1;
padding: 32px 24px;
}
.page {
display: none;
}
.page.active {
display: block;
}
h1 {
font-size: 1.7rem;
color: #1a355e;
margin-bottom: 18px;
font-weight: 600;
}
h2 {
font-size: 1.15rem;
color: #2d4c7c;
margin-top: 24px;
margin-bottom: 10px;
font-weight: 500;
}
p, ul, li {
font-size: 1rem;
line-height: 1.7;
color: #222;
}
ul {
padding-left: 18px;
}
footer {
background: #e6ecf3;
padding: 18px 0;
text-align: center;
}
.footer-content {
color: #1a355e;
font-size: 0.95rem;
}
/* New Image Styles */
.hero-img {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
margin-bottom: 24px;
border-radius: 4px;
}
.content-img {
width: 100%;
height: auto;
max-height: 300px;
object-fit: cover;
margin-bottom: 20px;
border-radius: 4px;
}
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
margin-top: 20px;
}
.project-card {
background: #f9f9fa;
border: 1px solid #e1e4e8;
border-radius: 4px;
overflow: hidden;
transition: transform 0.2s;
}
.project-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.project-card img {
width: 100%;
height: 180px;
object-fit: cover;
border-bottom: 1px solid #eee;
}
.project-card h3 {
font-size: 1rem;
color: #1a355e;
padding: 12px 16px;
margin: 0;
font-weight: 500;
}
@media (max-width: 600px) {
.container {
max-width: 100%;
padding: 0;
}
main {
padding: 18px 8px;
}
nav ul {
gap: 12px;
}
}
/* News Styles */
.news-item {
border-bottom: 1px solid #eee;
padding-bottom: 24px;
margin-bottom: 24px;
}
.news-item:last-child {
border-bottom: none;
}
.news-item h2 {
margin-top: 0;
font-size: 1.3rem;
color: #1a355e;
}
.news-item .date {
display: block;
color: #666;
font-size: 0.9rem;
margin-bottom: 16px;
}

/* Navigation & Article Styles */
.internal-link {
color: #2d4c7c;
text-decoration: none;
cursor: pointer;
}
.internal-link:hover {
text-decoration: underline;
}
.back-link {
display: inline-block;
margin-bottom: 24px;
font-size: 0.95rem;
color: #666;
text-decoration: none;
}
.back-link:hover {
color: #1a355e;
}
.news-full h1 {
font-size: 1.8rem;
margin-bottom: 12px;
color: #1a355e;
}
.news-full .date {
display: block;
color: #666;
font-size: 0.95rem;
margin-bottom: 32px;
border-bottom: 1px solid #eee;
padding-bottom: 16px;
}
