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

body {
  font-family: 'Georgia', serif;
  color: #1e1e1e;
  background: #f4f6f8;
  line-height: 1.8;
}

header {
  background: #1a1a2e;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #e8a020;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s;
}

nav a:hover {
  color: #e8a020;
}

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.8rem;
  color: #e8a020;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Arial', sans-serif;
}

.hero p {
  font-size: 1.15rem;
  color: #c8d0dc;
  max-width: 720px;
  margin: 0 auto 30px;
}

.hero-img {
  width: 100%;
  max-width: 900px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: #fff;
}

.section h2 {
  font-size: 2rem;
  color: #0f3460;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

.section p {
  font-size: 1.05rem;
  color: #3a3a3a;
  margin-bottom: 18px;
  max-width: 860px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.col-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #e8a020;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.1rem;
  color: #0f3460;
  margin-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.quote-block {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-left: 4px solid #e8a020;
  padding: 30px 40px;
  border-radius: 8px;
  margin: 40px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat-box {
  background: #0f3460;
  color: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}

.stat-box .number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e8a020;
  font-family: 'Arial', sans-serif;
}

.stat-box .label {
  font-size: 0.9rem;
  color: #aac;
  margin-top: 6px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.tip-item {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 10px;
  padding: 24px;
  border-left: 4px solid #e8a020;
}

.tip-item h4 {
  color: #0f3460;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: 'Arial', sans-serif;
}

.tip-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.contact-bar {
  background: #e8a020;
  color: #1a1a2e;
  padding: 40px;
  text-align: center;
}

.contact-bar h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: 'Arial', sans-serif;
}

.contact-bar p {
  font-size: 1rem;
  margin: 5px 0;
}

.contact-bar a {
  color: #1a1a2e;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #0d0d1a;
  color: #888;
  padding: 30px 40px;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #e8a020;
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  text-decoration: underline;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  overflow-y: auto;
}

.modal-box {
  background: #fff;
  max-width: 860px;
  margin: 60px auto;
  border-radius: 12px;
  padding: 50px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-box h1 {
  font-size: 1.8rem;
  color: #0f3460;
  margin-bottom: 8px;
  font-family: 'Arial', sans-serif;
}

.modal-box .updated {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 30px;
}

.modal-box h2 {
  font-size: 1.25rem;
  color: #0f3460;
  margin: 28px 0 12px;
  border-bottom: 1px solid #dde3ec;
  padding-bottom: 6px;
  font-family: 'Arial', sans-serif;
}

.modal-box p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 14px;
  line-height: 1.85;
}

.modal-box ul {
  margin: 10px 0 18px 22px;
}

.modal-box ul li {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 7px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.9rem; }
  .two-col.reverse { direction: ltr; }
}
