/* Base Styles */
:root {
  --primary: #ff3a3a;
  --primary-hover: #e62e2e;
  --secondary: #1d2b4c;
  --secondary-light: #2d3b5c;
  --background: #f8f9fc;
  --text: #333;
  --text-light: #666;
  --border: #e1e4e8;
  --success: #28a745;
  --error: #dc3545;
  --muted: #f1f3f5;
  --radius: 8px;
  --button-hover: #080e1c;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Circuit Background Pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.05;
  z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

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

.min-h-screen {
  min-height: 100vh;
}

.text-center {
  text-align: center;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.font-bold {
  font-weight: 700;
}

.font-mono {
  font-family: monospace;
}

.hidden {
  display: none;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.w-full {
  width: 100%;
}

.p-4 {
  padding: 1rem;
}

.rounded-md {
  border-radius: var(--radius);
}

.bg-muted {
  background-color: var(--muted);
}

.text-muted {
  color: var(--text-light);
}

/* Header - Modernized */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.site-logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: translateY(-2px);
}

.site-logo img {
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: rotate(5deg);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu - Modernized */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--secondary);
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 43, 76, 0.9) 0%, rgba(29, 43, 76, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ff3a3a;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.red-accent-line {
  width: 80px;
  height: 4px;
  background-color: #ff3a3a;
  margin: 0 auto 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--primary);
  color: white;
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1;
  min-width: 144px;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #080e1c;
  z-index: -1;
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50px;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn:hover::before {
  transform: scale(1.5);
}

.btn-primary {
  background-color: #ff3a3a;
  color: white;
  border: 2px solid #ff3a3a;
}

.btn-primary:hover {
  background-color: #e62e2e;
  border-color: #e62e2e;
}

.btn-success {
  background-color: #28a745;
  color: white;
  border: 2px solid #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #1d2b4c;
}

.btn-error {
  background-color: #dc3545;
  color: white;
  border: 2px solid #dc3545;
}

.btn-error:hover {
  background-color: #c82333;
  border-color: #c82333;
}

.btn-block {
  display: block;
  width: 100%;
}

.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 58, 58, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 58, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 58, 58, 0);
  }
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  transition: all 0.3s ease;
}

.glow-effect:hover:after {
  transform: rotate(30deg) translate(10%, 10%);
}

/* Page Titles */
.page-title-container {
  text-align: center;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.card-description {
  font-size: 0.875rem;
  color: var(--text-light);
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background-color: var(--muted);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 58, 58, 0.2);
}

.form-group label .required {
  color: var(--primary);
}

.form-text {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 20px;
}

.form-group {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

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

table th {
  background-color: var(--muted);
  font-weight: 600;
}

table tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Footer - Updated Modern Design */
.site-footer {
  position: relative;
  margin-top: 3rem;
  color: #fff;
  background-color: var(--secondary);
  font-family: "Barlow", sans-serif;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  padding: 2rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
  background-color: #fff0;
  padding: 2px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-links-section h4,
.footer-contact-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links-section h4:after,
.footer-contact-section h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  background-color: #fff;
  color: var(--secondary);
  text-decoration: none;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  gap: 0.5rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-credits a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credits a:hover {
  color: #fff;
  text-decoration: underline;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.site-footer .brand-name {
  color: #fff;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1d2b4c;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(29, 43, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: #ff3a3a;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1d2b4c;
}

.feature-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: #ff3a3a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-link span {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.feature-link:hover span {
  transform: translateX(5px);
}

/* Statistics Section */
.stats-section {
  padding: 60px 0;
  background-color: #1d2b4c;
  color: white;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-icon svg {
  color: #ff3a3a;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff3a3a;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1d2b4c;
}

.cta-content p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Success Page Styles */
.success-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.success-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.success-header {
  background-color: var(--primary);
  padding: 1.5rem;
  color: white;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step.completed .step-number {
  background-color: white;
  color: var(--primary);
}

.step.active .step-number {
  background-color: white;
  color: var(--primary);
}

.step-connector {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  flex-grow: 1;
  margin: 0 0.5rem;
  margin-bottom: 2rem;
}

.step-connector.completed {
  background-color: white;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.success-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  color: var(--success);
}

.success-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.success-message {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.index-number-container {
  width: 100%;
  max-width: 400px;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.index-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.index-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: monospace;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.copy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: white;
  color: var(--text-medium);
  border: 1px solid var(--border-light);
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 auto;
}

.copy-button:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
}

.copy-icon {
  color: var(--text-medium);
}

.copy-message {
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: var(--success);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.important-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--warning);
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 400px;
}

.warning-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--warning);
  flex-shrink: 0;
}

.important-note p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin: 0;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.home-button:hover {
  background-color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .footer-brand-section {
    grid-column: span 2;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .site-header .container {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 100;
    overflow-y: auto;
  }

  .site-nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .site-nav .nav-link {
    padding: 1rem 0;
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .site-nav .nav-link:hover {
    color: var(--primary);
  }

  .success-container {
    margin: 1.5rem auto;
  }

  .success-content {
    padding: 1.5rem 1rem;
  }

  .index-number {
    font-size: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-section {
    grid-column: span 1;
    align-items: center;
    text-align: center;
  }

  .footer-links-section h4:after,
  .footer-contact-section h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-section,
  .footer-contact-section {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    margin-bottom: 0;
  }

  .form-group {
    padding: 0;
  }

  .form-container {
    padding: 30px 20px;
  }

  .index-number {
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 12px 15px;
  }
}
