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

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #3b82f6;
  --accent-color: #7c3aed;
  --light-bg: #f8fafc;
  --dark-text: #1e293b;
  --light-text: #f8fafc;
}


body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
  background-image: linear-gradient(
    to bottom right,
    rgba(248, 250, 252, 0.8),
    rgba(243, 244, 246, 0.8)
  );
  min-height: 100vh;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  max-width: 960px;
  margin: 2rem auto;
  padding: 20px;
  width: 100%;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  padding: 2.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 89vh;
}

.container:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 1.6rem;
  font-weight: 600;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

p {
  margin-bottom: 1.25rem;
  color: #475569;
  font-size: 1.05rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
  color: #475569;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--light-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.navbar-brand::before {
  content: "🏢";
  margin-right: 8px;
  font-size: 1.4rem;
}

.navbar-links {
  display: flex;
  gap: 10px;
}

.navbar-links a {
  color: var(--light-text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
}

.navbar-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-links a:hover::after {
  width: 80%;
  left: 10%;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--light-text);
  margin-top: auto;
}

.footer p {
  color: var(--light-text);
  margin-bottom: 0;
}

.section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-content {
  line-height: 1.8;
}

.policy-content h1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-section {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-section h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.2rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.feature h2 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.id-display {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

/* Responsive design */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    flex-direction: column;
    height: auto;
  }
  
  .navbar-brand {
    margin: 1rem 0;
  }
  
  .navbar-links {
    width: 100%;
    padding-bottom: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .content {
    padding: 0 15px;
    margin: 1rem auto;
  }
  
  .container {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .features-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-section {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-sections .section {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-sections .section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.navbar-link{
  color: white;
  background-color: #2563eb;
  border-radius: 5px;
  padding: 5px;
}
