* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary: #f8fafc;
  --secondary: #ffffff;
  --accent: #2563eb;
  --accent-gradient: linear-gradient(90deg, #2563eb, #3b82f6);
  --text: #1e293b;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.05);
  --success: #10b981;
  --error: #ef4444;
  --warning: #dc2626;
  --warning-light: #fef2f2;
}

body {
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}




.preloader {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;

}

.preloader-container {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

/* Spinning circle */
.spinner {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(59, 130, 246, 0.2);
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1.2s infinite cubic-bezier(0.55, 0.15, 0.45, 0.85);
}

/* Progress bar */
.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  border-radius: 10px;
  animation: loading 2s infinite ease-in-out;
}

/* Loading info */
.loading-info {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    width: 30%;
    margin-left: 0;
  }

  50% {
    width: 70%;
    margin-left: 30%;
  }

  100% {
    width: 30%;
    margin-left: 70%;
  }
}

/* Responsive design */
@media (max-width: 480px) {
  .preloader-container {
    padding: 1.5rem;
  }

  .logo-text {
    font-size: 1.8rem;
  }
}



/* ALERTS */

/* ALERT POP UPS */


.success-alert {
  background-color: #4CAF50;
  color: white;
}

.alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000009b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.alert-content {
  width: 350px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.alert-icon {
  margin-bottom: 15px;
}

.alert-icon i {
  font-size: 50px;

}

.alert-message h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.alert-message p {
  margin: 0;
  font-size: 1rem;
}

.alert-button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #4CAF50;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.alert-button:hover {
  opacity: 0.9;
}


.error-alert {
  background-color: #F44336;
  color: white;
}

.error-alert .alert-button {
  color: #F44336;
}



.confirm-modal {
  background-color: white;
  color: #333;
}

.confirm-modal .alert-icon svg {
  stroke: #4CAF50;
}


/* ============ COMMON ELEMENTS ============ */

/* Back Button */
.back-button,
.disclaimer-back-button,
.terms-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s;
  background: var(--secondary);
  box-shadow: 0 4px 12px var(--shadow);
}

.back-button:hover,
.disclaimer-back-button:hover,
.terms-back-button:hover {
  background-color: rgba(37, 99, 235, 0.1);
  gap: 0.7rem;
  transform: translateY(-2px);
}

/* Page Headers */
.page-header,
.header,
.disclaimer-header,
.terms-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title,
.disclaimer-page-title,
.terms-page-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(to right, #1e293b, #475569);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.last-updated,
.disclaimer-last-updated,
.terms-last-updated {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Common Text Elements */
p,
.disclaimer-p,
.terms-p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

ul, ol,
.disclaimer-ul,
.disclaimer-ol,
.terms-ul,
.terms-ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li,
.disclaimer-li,
.terms-li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* ============ CONTACT PAGE STYLES ============ */

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem auto 5rem;
  max-width: 1200px;
  width: 100%;
}

/* Contact Info */
.contact-info {
  background: var(--secondary);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  height: fit-content;
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--secondary);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--primary);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-button {
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-decoration: none;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Map Section */
.map-section {
  margin: 3rem auto 5rem;
  max-width: 1200px;
  width: 100%;
}

.map-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text);
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(45deg, #e0f2fe, #93c5fd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  margin: 3rem auto;
  max-width: 1200px;
  width: 100%;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============ CONTENT CONTAINERS FOR ALL PAGES ============ */

.privacy-container,
.disclaimer-container,
.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--secondary);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
}

.section,
.disclaimer-section,
.terms-section {
  margin-bottom: 3rem;
}

.section-title,
.disclaimer-section-title,
.terms-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.section-subtitle,
.disclaimer-section-subtitle,
.terms-section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--text);
}

/* ============ SPECIAL ELEMENTS ============ */

.highlight,
.disclaimer-highlight,
.terms-highlight {
  background: rgba(37, 99, 235, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent);
}

.contact-info,
.disclaimer-contact-info,
.terms-contact-info {
  background: var(--primary);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.region-specific {
  background: rgba(16, 185, 129, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid #10b981;
}

.region-title {
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.disclaimer-warning {
  background: var(--warning-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2.5rem 0;
  border-left: 4px solid var(--warning);
}

.disclaimer-warning-title {
  font-weight: 700;
  color: var(--warning);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-notice,
.terms-notice {
  background: rgba(245, 158, 11, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid #f59e0b;
}

.disclaimer-notice-title,
.terms-notice-title {
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

/* ============ TABLES ============ */

table,
.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th, td,
.terms-th,
.terms-td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th,
.terms-th {
  background: var(--primary);
  font-weight: 600;
}

/* ============ SUBSCRIBE PAGE STYLES ============ */

/* Subscribe page specific body styles */
body.subscribe-page {
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.subscribe-container {
  max-width: 500px;
  width: 100%;
  background: var(--secondary);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.subscribe-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--accent-gradient);
}

.subscribe-container .back-button {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 10;
}

.subscribe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.subscribe-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(to right, #1e293b, #475569);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subscribe-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.benefits-list {
  text-align: left;
  margin-bottom: 2.5rem;
}

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

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.benefit-text {
  color: var(--text);
}

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

.subscribe-form .form-input {
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 14px;
}

.subscribe-form .form-button {
  padding: 1.2rem 2rem;
  border-radius: 14px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.subscribe-form .form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.privacy-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.privacy-note a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.success-state {
  display: none;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* ============ TOAST NOTIFICATION ============ */

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toast.show {
  opacity: 1;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--error);
}

/* ============ FOOTER ============ */

.footer,
.disclaimer-footer,
.terms-footer {
  max-width: 1000px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem 0;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}






   

    .about-container {
      max-width: 800px;
      margin: 2rem auto;
      padding: 2rem;
      background: var(--secondary);
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .about-container h1, h2 {
      color: var(--accent);
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1rem;
    }

    .about-btn-back {
      display: inline-block;
      margin-bottom: 1.5rem;
      padding: 0.6rem 1.2rem;
      font-size: 0.95rem;
      font-weight: bold;
      color: #fff;
      background: var(--accent-gradient);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .about-btn-back:hover {
      opacity: 0.9;
    }
  












/* ============ RESPONSIVE DESIGN ============ */

@media (max-width: 968px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-title,
  .disclaimer-page-title,
  .terms-page-title {
    font-size: 2.2rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .privacy-container,
  .disclaimer-container,
  .terms-container {
    padding: 1.5rem;
  }

  .section-title,
  .disclaimer-section-title,
  .terms-section-title {
    font-size: 1.5rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  table,
  .terms-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .page-title,
  .disclaimer-page-title,
  .terms-page-title {
    font-size: 1.8rem;
  }

  .subscribe-title {
    font-size: 1.8rem;
  }

  .page-subtitle,
  .subscribe-subtitle {
    font-size: 1rem;
  }

  .map-title,
  .faq-title {
    font-size: 1.5rem;
  }

  .header,
  .disclaimer-header,
  .terms-header,
  .privacy-container,
  .disclaimer-container,
  .terms-container {
    padding: 1rem;
  }

  .subscribe-container {
    padding: 2rem 1.5rem;
  }

  .subscribe-container .back-button {
    top: 1rem;
    left: 1rem;
  }
}