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

body {
font-family: "Lato", Helvetica, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #808080;
background: #fff;
}

.header {
background: #fff;
box-shadow: 0 5px 11px 0 rgba(50, 50, 50, 0.08);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
max-width: 1200px;
margin: 0 auto;
}

.logo {
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 20px;
font-weight: 700;
color: #000;
text-decoration: none;
}

.main-content {
margin-top: 80px;
padding: 60px 5% 40px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}

h1 {
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 45px;
line-height: 1.3;
color: #404040;
font-weight: 700;
margin-bottom: 40px;
text-align: center;
position: relative;
display: inline-block;
width: 100%;
}

h1:after {
content: "";
display: block;
width: 80px;
height: 3px;
background: #e96656;
margin: 20px auto 0;
}

article {
background: #fff;
padding: 40px 0;
}

article h2 {
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 26px;
color: #404040;
font-weight: 700;
margin: 30px 0 15px;
}

article h3 {
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 22px;
color: #404040;
font-weight: 700;
margin: 25px 0 12px;
}

article h4 {
font-size: 18px;
color: #404040;
font-weight: 700;
margin: 20px 0 10px;
}

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

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

article li {
margin-bottom: 10px;
line-height: 1.8;
}

.transition-section {
padding: 30px 0;
margin: 40px 0;
}

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

.links-section {
background: #f9f9f9;
padding: 50px 5%;
margin-top: 50px;
border-top: 3px solid #e96656;
}

.links-section h3 {
font-family: "Montserrat", Helvetica, sans-serif;
font-size: 22px;
color: #404040;
font-weight: 700;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.links-section h3:before {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background: #e96656;
}

.links-section ul {
list-style: none;
margin: 0 0 30px 0;
padding: 0;
column-count: 2;
column-gap: 30px;
}

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

.links-section a {
color: #e96656;
text-decoration: none;
font-size: 15px;
transition: color 0.3s;
display: inline-block;
padding: 5px 0;
}

.links-section a:hover {
color: #cb4332;
text-decoration: underline;
}

.links-section li:before {
content: "▸";
color: #e96656;
margin-right: 8px;
font-size: 12px;
}

.footer {
background: #272727;
color: #939393;
padding: 40px 5%;
text-align: center;
margin-top: 60px;
}

.footer p {
margin: 0;
font-size: 14px;
}

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

.main-content {
padding: 40px 5% 30px;
margin-top: 70px;
}

article h2 {
font-size: 22px;
}

article h3 {
font-size: 20px;
}

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

.links-section {
padding: 40px 5%;
}
}

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

.navbar {
padding: 12px 5%;
}

.logo {
font-size: 18px;
}

article p {
font-size: 15px;
}

.links-section a {
font-size: 14px;
}
}
