/* Reset & Base */
:root {
  --primary: #2ECC71; /* Soccer grass green */
  --primary-hover: #27AE60;
  --secondary: #3498DB; /* Sky blue */
  --dark: #2C3E50;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --gray: #95A5A6;
  --border-radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,0.05);
  --font-family: 'M PLUS Rounded 1c', 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2rem;
  color: var(--primary);
  border-bottom: 3px solid rgba(46, 204, 113, 0.2);
  display: inline-block;
  padding-bottom: 0.2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980B9;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}

header h1 {
  color: var(--white);
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

main {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray);
  font-size: 0.9rem;
}

footer a {
  color: var(--gray);
  margin: 0 10px;
}

/* Components */
.btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 800;
  margin-top: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  color: var(--primary-hover);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--white);
}

/* FAQ & Policy sections */
.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(52, 152, 219, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Decorative elements */
.logo-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-7px);}
}

/* Badges */
.badge {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 10px;
}
