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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.5;
}

/* Top banner with logo */
.top-banner {
  background: #0f172a;
  color: #e5e7eb;
  padding: 20px 16px;
}

.logo-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 65px;
  width: auto;
  background: #E8EEFF;
  filter: drop-shadow(0 0 6px white);
  padding: 8px;
  border-radius: 10px;
}

.brand-text h1 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.brand-text p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* Main content */
.main-content {
  padding: 32px 16px 48px;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  color: #64748b;
  margin-bottom: 24px;
}

.slides-section .slides-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Slide images */
.slide {
  margin-bottom: 24px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Contact banner */
.contact-banner {
  background: #020617;
  color: #e5e7eb;
  padding: 40px 16px;
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-inner p {
  margin-bottom: 16px;
  color: #cbd5f5;
}

.contact-details p {
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 600px) {
  .logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-text h1 {
    font-size: 1.4rem;
  }

  .brand-text p {
    font-size: 0.9rem;
  }
}
