* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0f1419;
  --navy-light: #1a1f2e;
  --gold: #d4af37;
  --text-light: #e8e8e8;
  --text-muted: #999;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: var(--navy);
  color: var(--text-light);
  line-height: 1.6;
}

/* Navigation */
nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-section img {
  width: 40px;
  height: 40px;
}

.logo-text h1 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-apply {
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-apply:hover {
  opacity: 0.9;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 2rem;
  text-align: left;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons a {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

/* Corporate Particulars */
.particulars {
  background: var(--navy-light);
  padding: 2rem;
  border-radius: 3px;
  margin-top: 2rem;
}

.particulars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.particular-item label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.particular-item strong {
  font-size: 1rem;
  color: var(--text-light);
}

/* Section */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--navy-light);
  padding: 2rem;
  border-radius: 3px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s;
}

.service-card:hover {
  background: rgba(212, 175, 55, 0.05);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Governance Grid */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.governance-item {
  background: var(--navy-light);
  padding: 1.5rem;
  border-radius: 3px;
  border-top: 2px solid var(--gold);
}

.governance-item h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.governance-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.legal-notice {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Form */
.form-container {
  background: var(--navy-light);
  padding: 2rem;
  border-radius: 3px;
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.form-submit {
  width: 100%;
  padding: 0.8rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
}

.form-submit:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .particulars-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}
