* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Quicksand', sans-serif; line-height: 1.7; font-size: 17px; }
body { color: #333; background-color: #f9f9f9; overflow-x: hidden; }
.container { margin: 0 auto; padding: 0 2.2rem; max-width: 1300px; }
.site-header { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); color: white; padding: 2.2rem 0; box-shadow: 0 5px 20px rgba(255,154,158,.3); }
.logo { font-size: 2.1rem; font-weight: 700; margin: 0 auto; display: flex; justify-content: center; text-shadow: 1px 1px 3px rgba(0,0,0,.1); }
.content { padding: 4rem; min-height: 75vh; margin: 3rem auto; max-width: 100%; width: 1100px; background: white; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,.05); }
.content p { margin-bottom: 2.2rem; font-size: 1.15rem; line-height: 1.8; color: #555; }
.content img { max-width: 100%; height: auto; margin: 3rem auto; display: block; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,.1); transform: perspective(1000px) rotateX(0deg) rotateY(0deg); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.content img:hover { transform: perspective(1000px) rotateX(5deg) rotateY(5deg); box-shadow: 0 25px 50px rgba(0,0,0,.15); }
.site-footer { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); color: white; padding: 4rem 0; display: flex; flex-direction: column; align-items: center; }
.links { margin-bottom: 2.5rem; font-weight: 600; display: flex; gap: 2.5rem; }
.links a { text-decoration: none; color: white; font-size: 1.2rem; transition: all 0.3s ease; padding: 0.5rem; border-radius: 8px; }
.links a:hover { background-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.copyright { opacity: .85; font-size: 1rem; margin-top: 1.5rem; text-shadow: 1px 1px 2px rgba(0,0,0,.1); }

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