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

body {
font-family: Helvetica, Arial, sans-serif;
color: #3a3b3c;
background: #fff;
line-height: 1.6;
}

header {
background: #fff;
border-bottom: 1px solid #d6d6d6;
padding: 20px 0;
}

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

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

.logo {
font-size: 24px;
font-weight: bold;
color: #0082a1;
text-decoration: none;
}

nav ul {
list-style: none;
display: flex;
gap: 30px;
flex-wrap: wrap;
}

nav a {
color: #0082a1;
text-decoration: none;
font-size: 14px;
text-transform: uppercase;
transition: color 0.2s;
}

nav a:hover {
color: #19b3dd;
}

.hero {
background: linear-gradient(135deg, #41c9ea 0%, #0082a1 100%);
color: #fff;
padding: 60px 0;
text-align: center;
border-bottom: 1px solid #2d8ca3;
}

.hero h1 {
font-size: 48px;
font-weight: 400;
margin-bottom: 20px;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

article {
padding: 50px 0;
}

article h2 {
font-size: 36px;
color: #008ab0;
margin: 30px 0 20px;
font-weight: 400;
}

article h3 {
font-size: 24px;
color: #5a5959;
margin: 25px 0 15px;
font-weight: 600;
}

article h4 {
font-size: 20px;
color: #5a5959;
margin: 20px 0 10px;
font-weight: 600;
}

article p {
font-size: 16px;
line-height: 1.8;
color: #5b5959;
margin-bottom: 20px;
}

article ul,
article ol {
margin: 20px 0 20px 30px;
}

article li {
margin-bottom: 10px;
line-height: 1.8;
color: #5b5959;
}

.transition-section {
background: #f8f8f8;
padding: 40px 0;
border-top: 1px solid #dcdcdc;
border-bottom: 1px solid #dcdcdc;
}

.transition-section p {
font-size: 17px;
line-height: 1.8;
color: #5b5959;
margin-bottom: 15px;
}

{% if links %}
.links-section {
padding: 50px 0;
background: #fff;
}

.links-section h3 {
font-size: 28px;
color: #008ab0;
margin-bottom: 20px;
font-weight: 400;
border-bottom: 2px solid #c1c1c1;
padding-bottom: 10px;
}

.links-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px 40px;
margin-top: 30px;
}

.links-grid ul {
list-style: none;
margin: 0;
padding: 0;
}

.links-grid li {
margin-bottom: 12px;
}

.links-grid a {
color: #0082a1;
text-decoration: none;
font-size: 15px;
transition: color 0.2s;
display: inline-block;
}

.links-grid a:hover {
color: #19b3dd;
}

.links-grid a:before {
content: "→ ";
margin-right: 5px;
color: #b0cb46;
}
{% endif %}

footer {
background: #fff;
border-top: 1px solid #efefef;
padding: 40px 0;
margin-top: 50px;
}

.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
}

.footer-nav {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.footer-nav a {
color: #909090;
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}

.footer-nav a:hover {
color: #0082a1;
}

@media (max-width: 768px) {
.hero h1 {
font-size: 32px;
}

nav ul {
flex-direction: column;
gap: 15px;
}

.links-grid {
grid-template-columns: 1fr;
gap: 20px;
}

article h2 {
font-size: 28px;
}

article h3 {
font-size: 20px;
}

.footer-content {
flex-direction: column;
}
}

@media (max-width: 480px) {
.hero {
padding: 40px 0;
}

.hero h1 {
font-size: 24px;
}

article {
padding: 30px 0;
}

article h2 {
font-size: 24px;
}

article p {
font-size: 15px;
}
}

a {
color: #0082a1;
transition: color 0.2s;
}

a:hover {
color: #19b3dd;
text-decoration: none;
}

strong, b {
font-weight: bold;
}

em, i {
font-style: italic;
}
