/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Premium Design System */
:root {
  --primary: #2563eb;       /* Royal Blue */
  --primary-hover: #1d4ed8;
  --secondary: #10b981;     /* Emerald Green */
  --secondary-hover: #059669;
  --accent: #f97316;        /* Bright Orange for highlights */
  --accent-hover: #ea580c;
  
  --dark: #0f172a;          /* Slate 900 */
  --dark-light: #1e293b;    /* Slate 800 */
  --light: #f8fafc;         /* Slate 50 */
  --card-bg: #ffffff;
  
  --text-dark: #0f172a;
  --text-gray: #4b5563;     /* Gray 600 */
  --text-light: #9ca3af;    /* Gray 400 */
  
  --border-color: #e2e8f0;  /* Slate 200 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

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

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Glassmorphism Header / Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-gray);
}

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

/* Prominent Student Login Nav Button */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-headings);
  transition: var(--transition);
}

.nav-login-btn:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Language Switcher Dropdown */
.lang-dropdown-wrapper {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--primary);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 150px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  animation: fadeIn 0.2s ease-out;
}

.lang-menu.hidden {
  display: none !important;
}

.lang-menu:not(.hidden) {
  display: flex;
}

.lang-item {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.lang-item:hover {
  background-color: var(--light);
  color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Navigation Dropdown */
.mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-menu.hidden {
  display: none;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.02) 90%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 3.25rem;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--dark);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-stat-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.hero-stat-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
}

/* SVG Hero Animation Container */
.hero-image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-animation {
  width: 100%;
  max-width: 450px;
  animation: float 6s ease-in-out infinite;
}

/* Reading Speed Test Section */
.test-container-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.test-panel {
  animation: fadeIn 0.4s ease-out;
}

.test-option-label {
  transition: var(--transition);
}

.test-option-label:hover {
  background-color: var(--light);
}

.test-option-label:has(input:checked) {
  border-color: var(--primary) !important;
  background-color: rgba(37, 99, 235, 0.05);
}

/* Info Section (What is Fast Reading?) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.benefit-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.chart-wrapper {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  height: 380px;
  position: relative;
}

/* Training Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pkg-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.pkg-icon-wrapper {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-name {
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: 700;
}

.pkg-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  flex-grow: 1;
}

.pkg-price-box {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pkg-price-box span.normal-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 500;
}

.pkg-actions {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 12px;
}

.pkg-actions .btn {
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* Exams Section (Accordion or Expanded Grid) */
.exams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.exam-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.exam-header {
  padding: 24px 30px;
  background-color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
}

.exam-icon {
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-name {
  font-size: 1.35rem;
  color: var(--dark);
  font-weight: 700;
}

.exam-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exam-desc {
  color: var(--text-gray);
  font-size: 0.98rem;
}

/* System flow section */
.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}

.step-number-bubble {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
  z-index: 2;
  transition: var(--transition);
}

.flow-step:hover .step-number-bubble {
  transform: scale(1.1);
}

.step-details {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
}

.step-details h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-details p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Flow line visual */
.system-flow::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

/* FAQ Accordions */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: var(--light);
}

.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--text-gray);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  border-top: 1px solid transparent;
  background-color: #fafbfc;
}

.accordion-content p {
  font-size: 0.98rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Contact and CTA Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--dark-light);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

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

.btn-whatsapp-action {
  background-color: #25d366; /* WhatsApp Brand Color */
  color: white;
}

.btn-whatsapp-action:hover {
  background-color: #20ba5a;
}

.btn-email-action {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-email-action:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Contact Form */
.contact-form-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title-box {
  margin-bottom: 24px;
}

.form-title-box h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
}

.form-alerts {
  margin-bottom: 16px;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--secondary-hover);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Chatbot Styles */
#chatbotWidgetBtn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 10px 24px rgba(37,99,235,0.5);
}

.chatbot-msg {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  max-width: 80%;
  line-height: 1.5;
  word-wrap: break-word;
  animation: msgSlideIn 0.2s ease-out;
}

.chatbot-msg-bot {
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chatbot-msg-user {
  background-color: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chatbot-quick-reply-btn {
  background-color: white;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

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

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.typing-indicator span.dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-light);
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span.dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes msgSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.footer {
  background-color: var(--dark);
  color: #9ca3af;
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--dark-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-col h4, .footer-contact-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--dark-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .system-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .system-flow::before {
    display: none; /* Hide line since it grid breaks */
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .nav-links {
    display: none; /* Hide standard nav */
  }
  .mobile-menu-btn {
    display: block; /* Show hamburger */
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-container {
    order: -1; /* Image first on mobile */
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chart-wrapper {
    height: 320px;
  }
  .exams-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #chatbotPane {
    width: calc(100vw - 32px) !important;
    right: -8px !important;
    height: 420px !important;
  }
  .test-container-box {
    padding: 24px 16px;
  }
  .test-results-grid {
    grid-template-columns: 1fr !important;
  }
}
