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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #000;
background-color: #fff;
}

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

header {
background-color: #fff;
border-bottom: 1px solid #e5e5e5;
padding: 16px 0;
}

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

.logo {
height: 50px;
width: auto;
cursor: pointer;
transition: opacity 0.2s;
border-radius: 12px;
}

.logo:hover {
opacity: 0.8;
}

nav {
display: flex;
gap: 24px;
flex-wrap: wrap;
}

nav a {
color: #000;
text-decoration: none;
font-weight: 500;
font-size: 14px;
letter-spacing: 0.3px;
transition: color 0.2s;
}

nav a:hover {
color: #555;
}

main {
min-height: calc(100vh - 200px);
padding: 32px 0;
}

h1 {
font-size: 32px;
font-weight: 700;
margin-bottom: 12px;
text-align: center;
letter-spacing: -0.5px;
}

h2 {
font-size: 20px;
font-weight: 600;
margin-top: 24px;
margin-bottom: 12px;
letter-spacing: -0.3px;
}

h3 {
font-size: 18px;
font-weight: 600;
margin-top: 16px;
margin-bottom: 8px;
letter-spacing: -0.2px;
}

.subtitle {
font-size: 18px;
font-weight: 500;
text-align: center;
color: #555;
margin-bottom: 32px;
letter-spacing: -0.2px;
}

.flag {
display: block;
width: 100%;
max-width: 100%;
margin: 0 auto 24px;
border-radius: 16px;
}

.emblem {
display: block;
width: 100%;
max-width: 150px;
margin: 0 auto 24px;
border-radius: 12px;
}

.section {
margin: 48px 0;
padding: 32px 0;
}

.section-title {
font-size: 28px;
font-weight: 700;
text-align: center;
margin-bottom: 32px;
letter-spacing: -0.5px;
}

.symbolics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin-bottom: 32px;
}

.symbol-card {
background-color: #f5f5f5;
padding: 24px;
text-align: center;
border-radius: 12px;
border: 1px solid #e5e5e5;
}

.symbol-card img {
width: 100%;
max-width: 100%;
height: auto;
margin-bottom: 16px;
border-radius: 8px;
}

.symbol-card h3 {
margin: 0;
font-weight: 600;
letter-spacing: -0.2px;
}

.government-section {
margin: 48px 0;
}

.president-block {
background-color: #f5f5f5;
padding: 32px;
border-radius: 12px;
border: 1px solid #e5e5e5;
margin-bottom: 32px;
}

.president-info {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
align-items: center;
}

.president-text h3 {
font-size: 20px;
margin-bottom: 16px;
}

.president-text p {
font-size: 15px;
line-height: 1.7;
}

.president-image img {
width: 100%;
max-width: 100%;
border-radius: 8px;
}

.parliament-block {
background-color: #f5f5f5;
padding: 32px;
border-radius: 12px;
border: 1px solid #e5e5e5;
margin-bottom: 32px;
}

.parliament-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 16px;
}

.parliament-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 32px;
align-items: center;
}

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

.parliament-head img {
width: 100%;
max-width: 250px;
border-radius: 8px;
margin-bottom: 16px;
}

.parliament-head h4 {
font-size: 16px;
font-weight: 600;
}

.parliament-circles {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
}

.circle {
width: 100%;
aspect-ratio: 1;
background-color: #4CAF50;
border-radius: 50%;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
color: #fff;
position: relative;
}

.circle:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.circle-name {
font-size: 14px;
text-align: center;
}

.geography-block {
background-color: #f5f5f5;
padding: 32px;
border-radius: 12px;
border: 1px solid #e5e5e5;
}

.geo-images {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-bottom: 24px;
}

.geo-image {
position: relative;
}

.geo-image img {
width: 100%;
max-width: 100%;
border-radius: 8px;
}

.button-group {
display: flex;
gap: 12px;
margin-bottom: 24px;
flex-wrap: wrap;
}

.btn {
background-color: #000;
color: #fff;
border: none;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}

.btn:hover {
background-color: #333;
}

.btn.active {
background-color: #333;
}

.geo-title {
font-size: 16px;
font-weight: 600;
margin-top: 16px;
}

.news-section {
margin-top: 32px;
}

.news-item {
background-color: #f5f5f5;
padding: 24px;
margin-bottom: 24px;
border-radius: 12px;
border: 1px solid #e5e5e5;
}

.news-date {
font-size: 12px;
color: #888;
margin-bottom: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 600;
}

.news-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 24px;
align-items: start;
}

.news-image img {
width: 100%;
max-width: 100%;
border-radius: 8px;
}

.news-text p {
font-size: 15px;
line-height: 1.7;
text-align: left;
}

footer {
background-color: #f5f5f5;
color: #000;
padding: 24px 0;
text-align: center;
margin-top: 40px;
border-top: 1px solid #e5e5e5;
}

footer p {
margin: 4px 0;
font-size: 12px;
letter-spacing: 0.3px;
}

footer a {
color: #000;
text-decoration: none;
transition: color 0.2s;
}

footer a:hover {
color: #555;
}

@media (max-width: 768px) {
header .container {
flex-direction: column;
gap: 16px;
}

nav {
justify-content: center;
gap: 12px;
}

nav a {
font-size: 13px;
}

h1 {
font-size: 26px;
}

h2 {
font-size: 18px;
}

.president-info {
grid-template-columns: 1fr;
gap: 16px;
}

.parliament-content {
grid-template-columns: 1fr;
gap: 16px;
}

.parliament-circles {
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}

.geo-images {
grid-template-columns: 1fr;
}

.button-group {
flex-direction: column;
}

.news-content {
grid-template-columns: 1fr;
}

.symbolics {
grid-template-columns: 1fr;
}
}