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

body {
font-family: 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f6f6f6;
}

header {
background-color: #000;
border-bottom: 1px solid #d2d3d4;
padding: 20px 0;
}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}

.logo {
font-size: 24px;
font-weight: bold;
color: #fff;
text-decoration: none;
letter-spacing: 2px;
}

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

nav ul li a {
color: #fff;
text-decoration: none;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
transition: color 0.3s;
}

nav ul li a:hover {
color: #a0a0a0;
}

main {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
background-color: #fff;
}

h1 {
font-size: 42px;
font-weight: 300;
margin-bottom: 40px;
color: #000;
letter-spacing: -1px;
line-height: 1.2;
}

article {
margin-bottom: 50px;
}

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

article h2 {
font-size: 32px;
font-weight: 300;
margin-top: 40px;
margin-bottom: 20px;
color: #000;
letter-spacing: -0.5px;
}

article h3 {
font-size: 24px;
font-weight: 400;
margin-top: 30px;
margin-bottom: 15px;
color: #000;
}

.transition-section {
margin: 50px 0;
padding: 30px;
background-color: #f9f9f9;
border-left: 3px solid #000;
}

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

{% if links %}
.links-section {
margin-top: 60px;
padding: 50px 30px;
background-color: #fff;
border-top: 1px solid #e0e0e0;
}

.links-section h3 {
font-size: 22px;
font-weight: 400;
margin-bottom: 20px;
color: #000;
text-transform: uppercase;
letter-spacing: 1px;
}

.links-section ul {
list-style: none;
column-count: 2;
column-gap: 40px;
margin-bottom: 40px;
}

.links-section ul li {
margin-bottom: 12px;
break-inside: avoid;
}

.links-section ul li a {
color: #333;
text-decoration: none;
font-size: 15px;
line-height: 1.6;
transition: color 0.3s;
display: inline-block;
}

.links-section ul li a:hover {
color: #000;
text-decoration: underline;
}
{% endif %}

footer {
background-color: #000;
color: #747474;
padding: 40px 0;
border-top: 1px solid #d2d3d4;
}

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

.footer-container p {
font-size: 14px;
letter-spacing: 1px;
}

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

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

h1 {
font-size: 32px;
}

article h2 {
font-size: 26px;
}

article h3 {
font-size: 20px;
}

{% if links %}
.links-section ul {
column-count: 1;
}
{% endif %}

main {
padding: 40px 20px;
}
}

@media (max-width: 480px) {
h1 {
font-size: 28px;
}

article p,
.transition-section p,
.links-section ul li a {
font-size: 14px;
}

.logo {
font-size: 20px;
}

nav ul li a {
font-size: 13px;
}
}
