body { background-color: #f4f4f4; font-family: 'Source Sans 3', Arial, sans-serif; margin: 0; }
h1, h2, h3 { font-family: 'Merriweather', Georgia, serif; }
/* Header */
header { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.utility-bar { background: #0a5; color: #fff; padding: 6px 12px; display: flex; justify-content: space-between; align-items: center; }
.utility-bar .social { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 14px; justify-content: flex-start; background: transparent !important; }
.utility-bar .social li { background: transparent !important; }
.utility-bar .social a { color: #fff; text-decoration: none; font-size: 18px; display: inline-flex; align-items: center; justify-content: center; background: none !important; width: auto; height: auto; padding: 0; }
.utility-bar .social a:hover { opacity: .85; }
.lang { display: inline-flex; gap: 8px; align-items: center; }
.lang label { font-weight: bold; }
.lang select { padding: 6px 10px; border-radius: 4px; border: none; }
.main-header { background: #4d4466; color: #fff; display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 10px 12px; }
.brand { font-size: 20px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; }
.brand .logo { height: 44px; width: auto; object-fit: contain; }
.menu { display: block; }
.nav { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 16px; align-items: center; background: transparent; }
.nav > li { position: relative; }
.nav > li > a { color: #fff; text-decoration: none; padding: 14px 18px; display: inline-block; font-weight: 600; border-radius: 2px; }
/* Link hover underline similar to reference */
.nav > li > a { background: transparent; }
.nav > li > a:hover, .nav > li > a.active { background: rgba(255,255,255,0.08); }
.nav > li > a::after { content: ""; display: block; height: 3px; background: #0a5; /* golden accent */ width: 0; transition: width .25s ease; margin-top: 6px; }
.nav > li:hover > a::after, .nav > li > a.active::after { width: 100%; }
/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; color: #333; box-shadow: 0 8px 20px rgba(0,0,0,.15); border-radius: 4px; padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 50; }
.dropdown li { list-style: none; }
.dropdown a { display: block; padding: 10px 14px; color: #333; text-decoration: none; font-weight: 600; }
.dropdown a:hover { background: #f1f0f5; color: #4d4466; }
.header-actions { display: inline-flex; align-items: center; gap: 12px; position: relative; }
.header-actions .search { color: #fff; text-decoration: none; background: transparent; padding: 8px 12px; border-radius: 2px; }
.header-actions .search:hover { background: rgba(255,255,255,0.08); }
/* Search dropdown */
.search-panel { position: absolute; top: 100%; right: 0; background: #fff; color: #333; border-radius: 4px; box-shadow: 0 6px 18px rgba(0,0,0,.18); padding: 8px; margin-top: 8px; width: 320px; display: none; z-index: 60; }
.search-panel form { display: flex; gap: 8px; }
.search-panel input[type="search"] { flex: 1; padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; }
.search-panel button { padding: 10px 14px; background: #0a5; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
.search-panel button:hover { opacity: .9; }
.search-hit { animation: searchFlash 2s ease; background: #fffa8b !important; }
@keyframes searchFlash { 0% { background:#fffa8b; } 100% { background: transparent; } }
.hero { text-align: center; padding: 24px 16px; color: #0a5; }
.container { padding: 16px; max-width: 1100px; margin: 0 auto; }
.card { background: #fff; padding: 16px; margin: 12px 0; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
h1 { margin: 0; font-size: 32px; color: #0a5; text-align: left; }
h2 { color: #0a5; font-size: 24px; margin: 6px 0 12px 0; text-align: left; }
h3 { color: #0a5; font-size: 20px; margin: 6px 0 12px 0; text-align: left; }
p { color: #111; font-size: 18px; line-height: 1.6; }
ol, ul { background: #f1f0f5; padding: 12px 20px; }
/* Ensure header nav lists are clean with no background */
.main-header .nav { background: transparent !important; padding: 0; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery img { width: 100%; height: auto; box-shadow: 0 2px 5px rgba(92,10,187,.5); transition: transform .2s ease; }
.gallery img:hover { transform: scale(1.03); }
.footer { padding: 20px 16px; text-align: center; color: #666; }
/* Contact form styles */
form { background: #fff; padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.08); border-radius: 8px; }
.row { margin-bottom: 12px; }
label { display: block; margin-bottom: 6px; color: #333; font-weight: 600; }
input, textarea { width: 100%; padding: 12px 14px; border-radius: 6px; border: 1px solid #ddd; background-color: #f8f9fa; color: #333; box-sizing: border-box; }
input:focus, textarea:focus { outline: none; border-color: #0a5; box-shadow: 0 0 0 3px rgba(0,170,85,.15); background: #fff; }
button, .btn-primary { padding: 12px 18px; background: #0a5; color: #fff; border: none; cursor: pointer; border-radius: 6px; font-weight: 700; }
button:hover, .btn-primary:hover { opacity: .9; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.contact-info { background: #fff; padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.08); border-radius: 8px; }
.info-item { display: flex; align-items: center; gap: 10px; margin: 10px 0; color: #333; }
.info-item i { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; color: #0a5; }
.contact-form { background: #fff; padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.08); border-radius: 8px; }
.contact-form form { background: transparent; box-shadow: none; padding: 0; }
.two-col { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); column-gap: 16px; row-gap: 12px; align-items: start; }
.form-alert { padding: 10px 12px; border-radius: 6px; margin-bottom: 12px; }
.form-alert.success { background: #e6f7ef; color: #0a5; border: 1px solid #bfead7; }
.form-alert.error { background: #fde8e8; color: #a11; border: 1px solid #f5c0c0; }
@media (max-width: 1000px){ .contact-grid { grid-template-columns: 1fr; } .two-col { grid-template-columns: 1fr; } }

