:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-red-500: rgba(192, 21, 47, 1);

  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-secondary: rgba(94, 82, 64, 0.12);

  --font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-normal: 1.5;

  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  --radius-lg: 12px;
  --radius-base: 8px;
  --radius-sm: 6px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);

  --duration-fast: 150ms;
  --duration-normal: 250ms;

  --color-green-primary: #2E7D32;
  --color-green-light: #4CAF50;
  --color-sky-blue: #03A9F4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

/* WhatsApp Popup */
.whatsapp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
  backdrop-filter: blur(4px);
}

.whatsapp-popup-overlay.hidden {
  display: none !important;
}

.whatsapp-popup-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
  border: 2px solid #25D366;
  position: relative;
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.popup-close-btn:hover {
  background: #ff6b6b;
  color: white;
  transform: rotate(90deg);
}

.popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.popup-icon {
  font-size: 60px;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.popup-title {
  font-size: 24px;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.popup-content {
  margin-bottom: 25px;
}

.popup-text-main {
  font-size: 16px;
  font-weight: 600;
  color: #25D366;
  margin: 0 0 10px 0;
  text-align: center;
}

.popup-text-sub {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.popup-benefits {
  list-style: none;
  padding: 15px;
  background: rgba(37, 211, 102, 0.08);
  border-radius: 12px;
  border-left: 4px solid #25D366;
}

.popup-benefits li {
  font-size: 13px;
  color: #333;
  padding: 8px 0;
  line-height: 1.4;
  font-weight: 500;
}

.popup-benefits li:not(:last-child) {
  border-bottom: 1px solid rgba(37, 211, 102, 0.2);
}

.popup-join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #25D366 0%, #20ba58 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
  margin-bottom: 15px;
}

.popup-join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #20ba58 0%, #1aa84d 100%);
}

.popup-footer-text {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  border-bottom: 1px solid var(--color-card-border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  transition: transform var(--duration-fast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-24);
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-base);
  transition: color var(--duration-fast);
}

.nav-links a:hover {
  color: var(--color-green-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2E7D32 0%, #1976D2 50%, #FFA726 100%);
  color: white;
  padding: 100px var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-32);
  animation: fadeInDown 1s ease-out;
}

.farmer-icon {
  font-size: 80px;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.wheat-animation {
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.wheat {
  font-size: 36px;
  animation: sway 3s ease-in-out infinite;
  transform-origin: bottom center;
}

.wheat:nth-child(1) { animation-delay: 0s; }
.wheat:nth-child(2) { animation-delay: 0.3s; }
.wheat:nth-child(3) { animation-delay: 0.6s; }

.hero-title {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-16);
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: var(--space-12);
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: var(--space-32);
  animation: fadeInUp 1s ease-out 0.6s both;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-16);
  justify-content: center;
  margin-bottom: var(--space-32);
  animation: fadeInUp 1s ease-out 0.8s both;
  flex-wrap: wrap;
}

.hero-btn {
  padding: var(--space-16) var(--space-32);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  transition: all var(--duration-normal);
  display: inline-block;
}

.hero-btn.primary {
  background: white;
  color: var(--color-green-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-btn.secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: var(--space-32);
  justify-content: center;
  animation: fadeInUp 1s ease-out 1s both;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-size-base);
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(20px); }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px var(--space-24);
}

.section {
  margin-bottom: 60px;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-primary);
  margin-bottom: var(--space-24);
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-32);
  line-height: 1.6;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-24);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 36px;
  margin-bottom: var(--space-16);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

.card-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-12);
}

.card-list {
  list-style: none;
  margin-top: var(--space-16);
}

.card-list li {
  padding: var(--space-8) 0;
  padding-left: var(--space-24);
  position: relative;
  color: var(--color-text);
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green-light);
  font-weight: bold;
}

/* Steps */
.steps-container {
  display: grid;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  background: var(--color-surface);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  transition: all var(--duration-normal);
}

.step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-green-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: rgba(34, 197, 94, 0.08);
  border-left: 4px solid var(--color-green-primary);
  padding: var(--space-20);
  border-radius: var(--radius-base);
  margin: var(--space-24) 0;
}

.info-box.important {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: var(--color-red-500);
}

.info-box-title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-size-lg);
}

.info-box p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-20);
  margin: var(--space-32) 0;
}

.stat-card {
  background: var(--color-surface);
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-card-border);
  transition: all var(--duration-normal);
}

.stat-card:hover {
  border-color: var(--color-green-primary);
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-primary);
  margin-bottom: var(--space-8);
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-24);
  background: var(--color-green-primary);
  color: white;
  border: none;
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal);
  gap: var(--space-8);
}

.btn:hover {
  background: var(--color-green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: var(--space-16) var(--space-32);
  font-size: var(--font-size-lg);
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-20);
  margin-top: var(--space-24);
}

.link-card {
  background: var(--color-surface);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  text-align: center;
  transition: all var(--duration-normal);
  text-decoration: none;
  color: var(--color-text);
  display: block;
}

.link-card:hover {
  border-color: var(--color-sky-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.link-card-title {
  font-weight: var(--font-weight-semibold);
  margin-top: var(--space-12);
  margin-bottom: var(--space-8);
  color: var(--color-green-primary);
}

.link-card-url {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  word-break: break-all;
}

/* Helpline */
.helpline-box {
  background: rgba(59, 130, 246, 0.08);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-32) 0;
  border: 2px solid var(--color-sky-blue);
}

.helpline-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-20);
  color: var(--color-text);
}

.helpline-numbers {
  display: flex;
  justify-content: center;
  gap: var(--space-32);
  flex-wrap: wrap;
}

.helpline-item {
  text-align: center;
}

.helpline-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.helpline-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-primary);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  justify-content: center;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: var(--space-32) auto;
}

.faq-item {
  background: var(--color-surface);
  margin-bottom: var(--space-16);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-20);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--duration-fast);
}

.faq-question:hover {
  background: var(--color-secondary);
}

.faq-icon {
  font-size: var(--font-size-xl);
  color: var(--color-green-primary);
  transition: transform var(--duration-normal);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) ease-out;
}

.faq-answer-content {
  padding: 0 var(--space-20) var(--space-20);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-answer.active {
  max-height: 500px;
}

/* Timeline */
.timeline {
  position: relative;
  padding: var(--space-32) 0;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-32);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: -32px;
  width: 2px;
  background: var(--color-card-border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 24px;
  height: 24px;
  background: var(--color-green-primary);
  border-radius: 50%;
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 2px var(--color-green-primary);
}

.timeline-content {
  background: var(--color-surface);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
}

.timeline-date {
  color: var(--color-green-primary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-8);
}

.timeline-event {
  color: var(--color-text);
  font-size: var(--font-size-lg);
}

/* Footer */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-card-border);
  padding: 40px var(--space-24) 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-32);
  margin-bottom: var(--space-32);
}

.footer-section h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-16);
  color: var(--color-green-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-20);
  border-top: 1px solid var(--color-card-border);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-green-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--color-green-light);
  transform: translateY(-4px);
}

.back-to-top.show {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-surface);
    flex-direction: column;
    padding: var(--space-24);
    transition: left var(--duration-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    padding: 60px var(--space-20);
    min-height: 500px;
  }

  .farmer-icon {
    font-size: 60px;
  }

  .wheat {
    font-size: 28px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-features {
    flex-direction: column;
    gap: var(--space-16);
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .helpline-numbers {
    flex-direction: column;
    gap: var(--space-20);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 40px var(--space-16);
  }

  .whatsapp-popup-container {
    padding: 30px 24px;
    max-width: 95%;
  }

  .popup-title {
    font-size: 20px;
  }

  .popup-icon {
    font-size: 50px;
  }

  .popup-join-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
