body { margin: 0; font-family: 'Inter', sans-serif; color: #222; background: #f9fafb; }
header { position: relative; text-align: center; color: white; }
header img { width: 100%; height: 70vh; object-fit: cover; filter: brightness(0.5); }
header .overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 1rem; }
header h1 { font-size: 3rem; font-weight: 700; margin: 0.5rem 0; }
header p { max-width: 700px; margin: 1rem auto; font-size: 1.1rem; }
.btn { display: inline-block; margin: 0.5rem; padding: 0.8rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.btn-main { background: #0088cc; color: white; }
.btn-main:hover { opacity: 0.9; }
.btn-outline { border: 1px solid #0088cc; color: #0088cc; }
.btn-outline:hover { background: #0088cc; color: white; }

section { max-width: 1100px; margin: 4rem auto; padding: 0 1rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; border-left: 5px solid #0088cc; padding-left: 0.5rem; }
table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 2px 6px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; }
td { padding: 12px 16px; border-bottom: 1px solid #eee; }
tr:last-child td { border-bottom: none; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); transition: transform 0.3s; }
.gallery img:hover { transform: scale(1.03); }
.highlight { background: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 1.5rem; margin-top: 1.5rem; }
ul { line-height: 1.7; }
footer { text-align: center; background: #f1f1f1; padding: 2rem 1rem; margin-top: 3rem; }
footer a { color: #0088cc; text-decoration: none; margin: 0 0.5rem; }
footer a:hover { text-decoration: underline; }
