body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #f5f8fd 0%, #e9effa 100%);
  color: #222;
  min-height: 100vh;
}

.site-container {
  width: 92%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(30,60,110,0.08);
  padding-bottom: 32px;
  overflow: hidden;
}

/* HEADER */
.main-header {
  padding: 32px 32px 18px 32px;
  border-bottom: 1px solid #e3e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.refined-logo-title {
  display: flex;
  align-items: center;
  gap: 22px;
}
.refined-logo {
  width: 80px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,60,110,0.08);
}
.refined-title {
  font-size: 2.2rem;
  color: #1a3c6e;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}
.site-tagline {
  font-size: 1.1rem;
  color: #4b6fa7;
  margin: 2px 0 0 0;
  font-weight: 400;
}
.main-nav {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}
.nav-link {
  color: #1a3c6e;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: #e3e8f0;
  color: #2b5db6;
}

/* HERO */
.hero-section {
  margin: 0 0 36px 0;
  display: flex;
  align-items: center;
  gap: 36px;
  background: linear-gradient(90deg, #e9effa 60%, #f5f8fd 100%);
  border-radius: 0 0 18px 18px;
  padding: 32px 32px 0 32px;
  min-height: 320px;
  position: relative;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-headline {
  font-size: 2.1rem;
  color: #1a3c6e;
  font-weight: 700;
  margin: 0;
}
.hero-subtext {
  font-size: 1.15rem;
  color: #4b6fa7;
  margin: 0 0 10px 0;
}
.hero-cta {
  display: inline-block;
  background: #1a3c6e;
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,60,110,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  background: #2b5db6;
  box-shadow: 0 4px 16px rgba(30,60,110,0.13);
}
.hero-image {
  width: 44%;
  min-width: 220px;
  max-width: 420px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,60,110,0.10);
}

/* ABOUT / MISSION */
.about-container {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 48px;
  padding: 0 32px;
}
.about-container.reverse {
  flex-direction: row-reverse;
}
.about-image {
  width: 38%;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,60,110,0.10);
}
.about-text {
  width: 62%;
}
.section-title {
  font-size: 2rem;
  color: #1a3c6e;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* IMAGE FULL WIDTH ON TOP */
.section-top-image {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,60,110,0.10);
}

/* TWO-COLUMN LIST BELOW IMAGE */
.two-column-list {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 32px 16px 32px;
}
.two-column-list ul {
  flex: 1;
  min-width: 220px;
  list-style: disc inside;
  padding-left: 0;
  line-height: 2.1;
  font-size: 1.08rem;
  color: #2b5db6;
}
.two-column-list li {
  margin-bottom: 6px;
  transition: color 0.2s;
}
.two-column-list li:hover {
  color: #1a3c6e;
}

/* RESPONSIVE */
@media screen and (max-width: 1100px) {
  .site-container {
    width: 98%;
    padding-bottom: 16px;
  }
  .main-header, .about-container, .two-column-list, .hero-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 900px) {
  .two-column-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 8px 16px 8px;
  }
  .about-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
  }
  .about-container.reverse {
    flex-direction: column-reverse;
  }
  .hero-section {
    flex-direction: column;
    gap: 18px;
    padding: 18px 8px 0 8px;
    min-height: unset;
  }
}


/* GALLERY */
.gallery-hero {
  width: 32%;
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,60,110,0.08);
  display: block;
}
.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
}
.gallery-images img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,60,110,0.08);
}
/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  padding: 0 32px;
}
.contact-card {
  flex: 1 1 calc(25% - 28px);
  background: linear-gradient(120deg, #f0f4f8 60%, #e9effa 100%);
  padding: 28px 18px 22px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(30,60,110,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 220px;
}
.contact-card:hover {
  box-shadow: 0 6px 24px rgba(30,60,110,0.13);
  transform: translateY(-4px) scale(1.03);
}
.contact-card img {
  width: 44px;
  margin-bottom: 12px;
}
.contact-card h3 {
  margin: 12px 0 6px;
  color: #1a3c6e;
  font-size: 1.13rem;
  font-weight: 600;
}
.contact-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.contact-link {
  color: #2b5db6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #1a3c6e;
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .contact-card {
    flex: 1 1 calc(50% - 18px);
  }
  .contact-grid {
    gap: 18px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 600px) {
  .contact-card {
    flex: 1 1 100%;
  }
  .contact-grid {
    gap: 12px;
    padding: 0 2px;
  }
}

/* FOOTER */
.main-footer {
  background: #1a3c6e;
  color: #fff;
  padding: 24px 0 18px 0;
  text-align: center;
  font-size: 1rem;
  margin-top: 36px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 12px rgba(30,60,110,0.08);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.footer-links a {
  color: #e9effa;
  text-decoration: none;
  margin: 0 6px;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}