* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; background: #fff; }
.top-bar { background: #0f2942; color: #d4af37; text-align: center; padding: 12px 20px; font-size: 14px; letter-spacing: 0.5px; }
header { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 40px 0 30px; }
.header-content { max-width: 1200px; margin: 0 auto; padding: 0 30px; text-align: center; }
.logo-text { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; font-weight: 700; color: #0f2942; text-decoration: none; display: block; margin-bottom: 8px; letter-spacing: 1px; }
.logo-subtitle { color: #666; font-size: 16px; font-weight: 300; letter-spacing: 0.5px; }
nav { background: #f8f9fa; border-bottom: 1px solid #e8e8e8; }
.nav-content { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: center; gap: 50px; }
nav a { color: #0f2942; text-decoration: none; padding: 18px 0; display: inline-block; font-weight: 500; font-size: 15px; letter-spacing: 0.3px; transition: color 0.2s; position: relative; }
nav a:hover { color: #d4af37; }
nav a:after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #d4af37; transform: scaleX(0); transition: transform 0.2s; }
nav a:hover:after { transform: scaleX(1); }
main { max-width: 900px; margin: 0 auto; padding: 80px 30px; }
h1 { font-family: 'Playfair Display', Georgia, serif; font-size: 48px; margin-bottom: 30px; color: #0f2942; text-align: center; }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; margin: 50px 0 20px; color: #0f2942; }
h3 { font-size: 20px; margin: 25px 0 15px; color: #0f2942; font-weight: 600; }
p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; color: #555; font-weight: 400; }
ul { margin: 15px 0 20px 30px; }
li { margin-bottom: 10px; color: #555; }
footer { background: #0f2942; color: white; padding: 60px 30px 30px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-section h3 { font-family: 'Playfair Display', Georgia, serif; margin-bottom: 20px; color: #d4af37; font-size: 20px; font-weight: 600; }
.footer-section p { color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 300; font-style: italic; }
.footer-section ul { list-style: none; }
.footer-section a { color: rgba(255,255,255,0.85); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); display: block; padding: 8px 0; transition: all 0.2s; font-weight: 300; }
.footer-section a:hover { color: #d4af37; text-decoration-color: #d4af37; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; }
.footer-bottom a { color: rgba(255,255,255,0.85); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); margin: 0 15px; transition: all 0.2s; }
.footer-bottom a:hover { color: #d4af37; text-decoration-color: #d4af37; }
.highlight { background: linear-gradient(135deg, #0f2942 0%, #1a3a52 100%); color: white; padding: 60px 40px; border-radius: 8px; margin: 50px 0; text-align: center; }
.highlight h2 { color: #d4af37; margin-top: 0; }
.highlight p { color: rgba(255,255,255,0.9); }
.last-updated { text-align: center; color: #999; font-size: 14px; margin-bottom: 50px; }
@media (max-width: 768px) { .logo-text { font-size: 32px; } h1 { font-size: 36px; } .nav-content { gap: 30px; flex-wrap: wrap; } .footer-content { grid-template-columns: 1fr; gap: 40px; } }

/* Contact Page Styles */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin: 50px 0; }
.contact-info { padding: 30px; background: #f8f9fa; border-radius: 8px; }
.contact-item { margin-bottom: 25px; }
.contact-item h3 { font-size: 18px; color: #0f2942; margin-bottom: 8px; font-weight: 600; }
.contact-item p { font-size: 16px; color: #666; margin: 0; }
.contact-item a { color: #d4af37; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-form { padding: 30px; background: #ffffff; border: 1px solid #e8e8e8; border-radius: 8px; }
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 500; color: #0f2942; }
input, textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 16px; }
input:focus, textarea:focus { outline: none; border-color: #d4af37; }
textarea { min-height: 150px; resize: vertical; }
button { background: #d4af37; color: #0f2942; border: none; padding: 14px 32px; border-radius: 4px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
button:hover { background: #e6c050; transform: translateY(-2px); }

/* Support Page Styles */
.faq-item { background: #f8f9fa; padding: 25px; margin-bottom: 20px; border-radius: 8px; border-left: 4px solid #d4af37; }
.faq-item h3 { margin-top: 0; }

/* Mobile responsive for contact grid */
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
