/* 🔧 Base Reset */
body, h1, h2, h3, p, ul, li, a, img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* 🔴 Header */
.ps-masthead {
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}
.ps-masthead-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.ps-logo img {
  height: 40px;
}
.ps-right-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.ps-right-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.hamburger-menu {
  display: none;
}

/* ⚫ Hero Marquee */
.rsk-marquee-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.rsk-marquee-wrap picture,
.rsk-marquee-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rsk-marquee-content {
  position: absolute;
  bottom: 4%;
  left: 25%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 90%;
}

.rsk-marquee-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* 🟣 Three-Card Section */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}
.card {
  flex: 1 1 300px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card-icon {
  width: 64px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.card img {
  width: 50%;
  border-radius: 6px;
  margin-bottom: 1rem;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.ps-btn-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #c20000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.ps-btn-text {
  display: inline-block;
  margin-top: 0.5rem;
  color: #c20000;
  text-decoration: none;
  font-weight: 500;
}

/* 🟡 Career Promo */
.ps-large-promo-full {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: #f0f0f0;
}
.ps-large-promo-full img {
  width: 50%;
  border-radius: 8px;
}
.ps-promo-full-content {
  padding-left: 2rem;
}
.ps-promo-full-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.ps-promo-full-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* 🟠 History Section */
.history-section {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}
.history-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.history-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ⚪ Footer */
.ps-footer {
  background-color: #222;
  color: #ccc;
  padding: 2rem;
}
.ps-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  justify-content: center;
}
.ps-footer nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}
.ps-footer nav a:hover {
  text-decoration: underline;
}
.ps-footer .ps-copyright {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .ps-masthead-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .ps-large-promo-full {
    flex-direction: column;
  }
  .ps-large-promo-full img {
    width: 100%;
    margin-bottom: 1rem;
  }
  .ps-promo-full-content {
    padding-left: 0;
  }
}
