* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.6; font-size: 18px; }
body { color: #2d3748; background-color: #f7fafc; overflow-x: hidden; }
.container { margin: 0 auto; padding: 0 3rem; max-width: 1200px; }
.site-header { background-color: #4299e1; color: white; padding: 2rem 0; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.logo { font-size: 2rem; font-weight: 800; margin: 0 auto; display: flex; justify-content: center; text-transform: uppercase; letter-spacing: 1px; }
.content { padding: 3rem 0; min-height: 70vh; margin: 0 auto; width: 100%; }
.content p { margin-bottom: 1.8rem; font-size: 1.15rem; line-height: 1.8; color: #4a5568; }
.content img { max-width: 100%; height: auto; margin: 2rem auto; display: block; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.content img:hover { box-shadow: 0 14px 28px rgba(0,0,0,0.15); transform: translateY(-5px); }
.site-footer { background-color: #2b6cb0; color: white; padding: 3rem 0; display: flex; justify-content: center; flex-direction: column; align-items: center; }
.links { margin-bottom: 2rem; font-weight: 700; display: flex; gap: 2.5rem; }
.links a { text-decoration: none; color: white; font-size: 1.2rem; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; }
.links a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background-color: white; transition: width 0.3s ease; }
.links a:hover::after { width: 100%; }
.copyright { opacity: 0.8; font-size: 0.95rem; }

@media (max-width: 768px) {
  html { font-size: 16px; }
  .container { padding: 0 2rem; }
  .logo { font-size: 1.7rem; }
  .links { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
}
