:root {
  --color-s: #FF8A00;
  --color-y: #6A5A55;
  --color-z: #F6D0D4;
  --color-n: #4A60D1;
  --color-u: #964F4F;
  --bg-color: #f0f2f5;
  --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  --text-main: #2b2d42;
  --text-secondary: #6c757d;
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(255, 255, 255, 0.5);
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

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

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

/* syZnu Logo Styling */
.logo-link {
  display: inline-block;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Header */
header {
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-s);
}

/* Main Content */
main {
  flex: 1;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--text-main), var(--color-n));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Cards */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.policy-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-s), var(--color-n));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.1);
}

.policy-card:hover::before {
  transform: scaleX(1);
}

.policy-icon {
  width: 50px;
  height: 50px;
  background: rgba(92, 107, 192, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-n);
}

.policy-icon svg {
  width: 24px;
  height: 24px;
}

.policy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more {
  color: var(--color-s);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.policy-card:hover .read-more {
  gap: 0.8rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 5%;
  color: var(--text-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    display: flex;
    gap: 1rem;
  }

  .nav-links a {
    margin: 0;
  }
}