* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Nunito Sans', sans-serif; line-height: 1.7; font-size: 17px; }
body { color: #4a4a4a; background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%); overflow-x: hidden; min-height: 100vh; }
.container { margin: 0 auto; padding: 0 3rem; max-width: 1100px; }
.site-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 2rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.logo { font-size: 1.9rem; font-weight: 800; margin: 0 auto; display: flex; justify-content: center; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.content { padding: 3rem 0; min-height: 70vh; margin: 0 auto; width: 100%; background-color: white; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-top: -1rem; position: relative; z-index: 1; }
.content p { margin-bottom: 1.8rem; font-size: 1.1rem; line-height: 1.8; color: #5a5a5a; }
.content img { max-width: 100%; height: auto; margin: 2rem auto; display: block; border-radius: 10px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.content img:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.15); transform: translateY(-3px); }
.site-footer { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); color: white; padding: 3rem 0; display: flex; justify-content: center; flex-direction: column; align-items: center; margin-top: 2rem; }
.links { margin-bottom: 1.8rem; font-weight: 700; display: flex; gap: 2rem; }
.links a { text-decoration: none; color: white; font-size: 1.1rem; transition: all 0.3s ease; padding: 0.5rem 1rem; border-radius: 50px; }
.links a:hover { background-color: rgba(255,255,255,0.2); }
.copyright { opacity: 0.8; font-size: 0.9rem; }

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 2rem; }
  .logo { font-size: 1.6rem; }
  .links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .links a { padding: 0.5rem; }
}
