
:root {
  --bg: #fff;
  --surface: #f7f7f7;
  --primary: #111;
  --secondary: #39b54a;
  --accent: #1a7c2c;
  --text: #111;
  --text-light: #39b54a;
  --border: #e0e0e0;
  --radius: 18px;
  --font: 'Montserrat', Arial, sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* Apply Lato font to all paragraph elements */
p {
  font-family: 'lato', Arial, sans-serif;
}

/* Apply Nexa font to all heading elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'nexa', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass {
  background: var(--glass-bg);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Header */
.main-header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 92vw;
  max-width: 1200px;
  z-index: 100;
  padding: 0.7rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.2s, background 0.2s;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.1rem;
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.04em;
}

.menu {
  display: flex;
  gap: 2.2rem;
}

.menu a {
  color: var(--primary);
  font-weight: 400;
  font-size: 1.05rem;
  border-radius: 1.2rem;
  padding: 0.3rem 1.1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.menu a:hover {
  background: var(--secondary);
  color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: rgba(57, 181, 74, 0.1);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* User Status */
.user-status {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(57, 181, 74, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(57, 181, 74, 0.2);
}

.user-info i {
  color: var(--secondary);
  font-size: 1.2rem;
}

.user-info span {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.logout-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.logout-btn:hover {
  background: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  z-index: 1;
  padding: 2rem 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.counter {
  font-size: 4rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 2rem 0;
  display: block;
}

.cta-button {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 181, 74, 0.3);
}

.cta-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 181, 74, 0.4);
}

/* Application Instructions */
.application-section {
  padding: 5rem 0;
  background: var(--surface);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

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

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-desc {
  color: #666;
  line-height: 1.6;
}

/* Upload Form */
.upload-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
}

.file-upload {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-upload input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: block;
  padding: 1rem;
  border: 2px dashed var(--border);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-label:hover {
  border-color: var(--secondary);
  background: rgba(57, 181, 74, 0.05);
}

.payment-section {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.payment-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.payment-desc {
  color: #666;
  margin-bottom: 1.5rem;
}

.payment-button {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-button:hover {
  background: var(--accent);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
}

/* Referral Program */
.referral-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.referral-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.referral-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.referral-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.firebase-login {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.login-button {
  background: #fff;
  color: #333;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0.5rem;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.referral-dashboard {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: none;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  opacity: 0.9;
}

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background: var(--surface);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-logo {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: transform 0.3s;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
}

/* Testimonials */
.testimonials-section {
  padding: 5rem 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.testimonial-quote {
  color: var(--primary);
  line-height: 1.6;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: var(--surface);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(57, 181, 74, 0.05);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1rem;
  text-align: center;
}

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

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ccc;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .counter {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .counter {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .main-header {
    width: 98vw;
    padding: 0.5rem 1rem;
    top: 1rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
    padding-left: 0.5rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    border-right: 1px solid var(--glass-border);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu a {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  
  .menu a:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    transform: translateX(5px);
  }
  
  .user-status {
    margin-left: auto;
  }
  
  .user-status {
    gap: 0.5rem;
  }
  
  .user-info {
    padding: 0.3rem 0.8rem;
  }
  
  .user-info span {
    font-size: 0.8rem;
  }
  
  .logout-btn {
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .hero {
    padding: 1rem 0;
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }
  
  .application-section {
    padding: 3rem 0;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .upload-form {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .form-input {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .payment-amount {
    font-size: 1.8rem;
  }
  
  .payment-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .referral-section {
    padding: 3rem 0;
  }
  
  .referral-title {
    font-size: 2rem;
  }
  
  .referral-subtitle {
    font-size: 1rem;
  }
  
  .firebase-login {
    padding: 1.5rem;
  }
  
  .login-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin: 0.3rem;
  }
  
  .referral-dashboard {
    padding: 1.5rem;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .partners-section {
    padding: 3rem 0;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .partner-logo {
    padding: 1.2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-section h3 {
    margin-bottom: 0.8rem;
  }
  
  .footer-section a {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .counter {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .main-header {
    width: 99vw;
    padding: 0.3rem 0.5rem;
    top: 0.5rem;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .menu {
    gap: 0.5rem;
  }
  
  .menu a {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
  
  .user-info {
    padding: 0.2rem 0.6rem;
  }
  
  .user-info span {
    font-size: 0.7rem;
  }
  
  .logout-btn {
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
  }
  
  .hero {
    padding: 0.5rem 0;
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .application-section {
    padding: 2rem 0;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .info-icon {
    font-size: 2rem;
  }
  
  .info-title {
    font-size: 1.1rem;
  }
  
  .info-desc {
    font-size: 0.9rem;
  }
  
  .upload-form {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .file-upload-label {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .payment-amount {
    font-size: 1.6rem;
  }
  
  .payment-desc {
    font-size: 0.9rem;
  }
  
  .payment-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .referral-section {
    padding: 2rem 0;
  }
  
  .referral-title {
    font-size: 1.8rem;
  }
  
  .referral-subtitle {
    font-size: 0.9rem;
  }
  
  .firebase-login {
    padding: 1rem;
  }
  
  .login-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    margin: 0.2rem 0;
  }
  
  .referral-dashboard {
    padding: 1rem;
  }
  
  .stat-card {
    padding: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 0.5rem;
  }
  
  .partner-logo {
    padding: 0.8rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-header {
    gap: 0.8rem;
  }
  
  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }
  
  .testimonial-info h4 {
    font-size: 1rem;
  }
  
  .testimonial-info p {
    font-size: 0.8rem;
  }
  
  .testimonial-quote {
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0 0.8rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-section a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .counter {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .main-header {
    padding: 0.2rem 0.3rem;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  .menu a {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
  
  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .upload-form {
    padding: 1rem 0.8rem;
  }
  
  .payment-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .login-button {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-count {
  animation: countUp 1s ease-out;
}

/* Responsive styles for pricing-section */
.pricing-section {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.pricing-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.5rem;
}
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .pricing-section {
    padding: 1rem;
    margin: 2rem 0;
  }
  .pricing-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 480px) {
  .pricing-section {
    padding: 0.5rem;
    margin: 1rem 0;
    border-radius: 10px;
  }
  .pricing-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* Responsive and centering styles for cookie-content */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.cookie-content {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  max-width: 600px;
  width: 90vw;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookie-text h3 {
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}
@media (max-width: 600px) {
  .cookie-content {
    padding: 1rem;
    max-width: 98vw;
    border-radius: 10px;
  }
  .cookie-text h3 {
    font-size: 1.1rem;
  }
  .cookie-text p {
    font-size: 0.95rem;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
  }
  .accept-btn, .decline-btn {
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1rem;
  }
}
