:root {
  --primary: #6c3483;
  --secondary: #e74c3c;
  --accent: #f39c12;
  --dark: #1a1a2e;
  --light: #f8f5ff;
  --text: #2d2d2d;
  --muted: #666;
}

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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

/* NAV */
nav {
  background: var(--dark);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo a {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  color: #ccc;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: white;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243,156,18,0.4);
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-line {
  width: 50px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* CARDS GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--light);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(108,52,131,0.12);
}

.card .icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ABOUT */
.about-block {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.about-block h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 0.8rem; }
.about-block p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }

.values { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }

.tag {
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ACTIVITIES */
.activity {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: var(--light);
  transition: transform 0.2s;
}

.activity:hover { transform: translateX(4px); }

.activity .num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 50px;
}

.activity h3 { color: var(--primary); margin-bottom: 0.4rem; }
.activity ul { padding-left: 1.2rem; color: var(--muted); font-size: 0.92rem; line-height: 1.8; }

/* CONTACTS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.contact-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.contact-card a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--muted); font-size: 0.92rem; }

.legal-note {
  background: var(--light);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  border-left: 4px solid var(--accent);
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}

footer strong { color: white; }
