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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #FFE5B4 0%, #87CEEB 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo h2 {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

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

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Partnership Intro */
.partnership-intro {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.intro-content h2 {
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-content p {
  color: #654321;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Partner Details */
.partner-details {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  margin: 40px 20px;
  border-radius: 20px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.partner-info h2 {
  color: #8B4513;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.info-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 1.5rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border-left: 4px solid #FF8C00;
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.info-card h3 {
  color: #8B4513;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #654321;
  line-height: 1.6;
}

.info-card a {
  color: #FF8C00;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.partnership-benefits h2 {
  color: #8B4513;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.benefit-icon {
  font-size: 1.5rem;
  /* background: linear-gradient(135deg, #FF8C00, #FFD700); */
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  min-width: 40px;
  text-align: center;
}

.benefit-content h4 {
  color: #8B4513;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #654321;
  line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.compliance-content h2 {
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.compliance-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border-top: 4px solid #FF8C00;
  transition: all 0.3s;
  border: 1px solid rgba(255, 140, 0, 0.1);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.compliance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.compliance-card h3 {
  color: #8B4513;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.compliance-card p {
  color: #654321;
  line-height: 1.6;
}

/* Role Clarification */
.role-clarification {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  margin: 40px 20px;
  border-radius: 20px;
}

.role-content h2 {
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.role-description {
  color: #654321;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.role-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.role-number {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.role-text h4 {
  color: #8B4513;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.role-text p {
  color: #654321;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: 60px 0 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #FFD700;
}

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

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

.footer-section a {
  color: #FFF8DC;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: #FFF8DC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .role-item {
    flex-direction: column;
    text-align: center;
  }

  .page-hero,
  .partnership-intro,
  .partner-details,
  .compliance-section,
  .role-clarification {
    margin: 20px 10px;
  }
}