* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #1b1161 0%, #2c1810 100%);
  color: white;
  padding: 0.2rem 0;
  box-shadow: 0 4px 20px rgba(27, 17, 97, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.logo-image {
  height: 35px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text h1 {
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo-text h2 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e7ff;
  margin: 0;
}

.logo-text p {
  font-size: 0.7rem;
  color: #c3cfe2;
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.contact-info span {
  font-size: 0.75rem;
  opacity: 0.9;
  white-space: nowrap;
}

/* Main Content */
.main-content {
  padding: 50px 0;
}

.legal-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

h1 {
  color: #1b1161;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

/* This rule was changed from 'h2' to '.legal-container h2' to be more specific */
.legal-container h2 {
  color: #1b1161;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  padding-left: 15px;
}

h3 {
  color: #1b1161;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

.contact-info-box {
  background: linear-gradient(135deg, #1b1161, #667eea);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.contact-info-box h3 {
  color: white;
  margin-bottom: 15px;
}

.contact-info-box p {
  margin-bottom: 5px;
}

.contact-info-box a {
  color: #e0e7ff;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #000; /* Optional: dark background for contrast */
  padding: 20px 0;
}

footer .container {
  display: flex;
  justify-content: center; /* Center the items horizontally */
  gap: 30px; /* Space between the links */
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .container li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

footer .container li a:hover {
  text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-info {
    align-items: center;
  }

  .legal-container {
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
.no-underline {
  text-decoration: none;
}