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

:root {
  --navy: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-50: #EFF6FF;
  --emerald-600: #059669;
  --emerald-50: #ECFDF5;
  --white: #FFFFFF;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--slate-800);
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 120px;
}

.logo img {
  width: 100%;
}

.nav-cta {
  padding: 0.75rem 1.75rem;
  background: var(--blue-600);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.15);
}

.nav-cta:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.25);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--blue-50) 100%);
  display: flex;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg, 
      rgba(15, 23, 42, 0.85) 0%,
      rgba(30, 41, 59, 0.75) 50%,
      rgba(59, 130, 246, 0.65) 100%
  );
  z-index: 1;
}

/* Optional: Add a subtle pattern overlay for texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .subheadline {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
  color: var(--slate-200);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--slate-100);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--slate-600);
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mission-statement {
  font-size: 1.35rem;
  text-align: center;
  color: var(--slate-700);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

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

.feature-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--slate-50);
  transition: all 0.3s ease;
  border: 1px solid var(--slate-100);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-color: var(--blue-100);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 600;
}

.feature-card p {
  color: var(--slate-600);
  line-height: 1.6;
}

/* Audience & Reach Section */
.audience {
  padding: 6rem 2rem 0 2rem;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-600), var(--emerald-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--slate-600);
  font-weight: 500;
}

/* World Map */
.world-map {
  margin-top: 30px;
  background: var(--white);
}

.map-container {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.map-container img {
  width: 100%;
}

.map-container .location-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--blue-600);
  position: absolute;
  display: inline-block;
  inset: 0;
}

.map-container .location-dot.us {
  top: 39%;
  left: 21%;
}
.map-container .location-dot.uk {
  top: 29%;
  left: 47%;
}
.map-container .location-dot.canada {
  top: 25%;
  left: 17%;
}
.map-container .location-dot.australia {
  top: 77%;
  left: 84%;
}
.map-container .location-dot.new-zealand {
  top: 89%;
  left: 94%;
}

.map-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Editorial Standards */
.editorial {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.standard-item {
  display: flex;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--slate-50);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid var(--slate-100);
}

.standard-item:hover {
  background: var(--white);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.check-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--emerald-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.standard-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 600;
}

.standard-content p {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Magazines Section */
.magazines {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}

.magazine-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto 0;
  
}

.magazine-slider-inner-container {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.magazine-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 500px;
}

.magazine-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.magazine-slide-image {
  height: 100%;
  background: linear-gradient(135deg, var(--slate-700), var(--slate-800));
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  /* background-position: 28% 100% !important; */
}

.magazine-slide:nth-child(1) .magazine-slide-image {
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.magazine-slide:nth-child(2) .magazine-slide-image {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.magazine-slide:nth-child(3) .magazine-slide-image {
  background: linear-gradient(135deg, var(--emerald-600), #047857);
}

.magazine-category {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.magazine-slide-content {
  padding: 3rem;
}

.magazine-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}

.magazine-description {
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.learn-more {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: var(--blue-500);
  transform: translateX(5px);
}

/* Slider Arrow Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--slate-700);
}

.slider-arrow:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: -25px;
}

.slider-arrow-next {
  right: -25px;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--blue-600);
  width: 30px;
  border-radius: 5px;
}

.slider-dot:hover:not(.active) {
  background: var(--slate-400);
}

/* Mobile Responsive - IMAGE ON TOP */
@media (max-width: 768px) {
  .magazine-slider {
    height: auto;
    min-height: 500px;
  }
  
  .magazine-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 1fr;
    gap: 0;
  }
  
  /* Ensure image is first in visual order on mobile */
  .magazine-slide-image {
    grid-row: 1;
    height: 250px;
  }
  
  .magazine-slide-content {
    grid-row: 2;
    padding: 2rem;
  }
  
  .magazine-category {
    font-size: 1.75rem;
  }
  
  .magazine-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .magazine-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .slider-arrow-prev {
    left: 10px;
  }
  
  .slider-arrow-next {
    right: 10px;
  }

  .magazine-slider-container .slider-arrow {
    display: none;
  }
}

/* Partnership Section */
.partnership {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--navy), var(--slate-800));
  color: white;
  position: relative;
  overflow: hidden;
}

.partnership::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.partnership-content {
  position: relative;
  z-index: 1;
}

.partnership .section-title {
  color: white;
}

.partnership-text {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--slate-200);
  line-height: 1.7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.legal-links p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.legal-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.legal-links a:hover {
    text-decoration: underline;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--slate-200);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: rgba(255, 255, 255, 0.15);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--blue-600);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.submit-button:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
footer {
  background: var(--slate-800);
  color: white;
  padding: 4rem 2rem 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: var(--slate-400);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--blue-600);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-400);
  font-size: 0.9rem;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }
  
  .stat-number {
      font-size: 2.5rem;
  }
  
  .magazine-grid,
  .standards-list,
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .nav-container,
  section {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}

/* Success Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.modal.show {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--emerald-50), #D1FAE5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-icon svg {
  color: var(--emerald-600);
  animation: checkmark 0.6s ease 0.3s both;
}

.modal-title {
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.modal-message {
  font-size: 1.125rem;
  color: var(--slate-700);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.modal-submessage {
  font-size: 1rem;
  color: var(--slate-600);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-details {
  background: var(--slate-50);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--slate-100);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--slate-600);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  color: var(--navy);
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.modal-close-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.modal-close-btn:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* Confetti Animation (optional celebratory effect) */
.modal.show .modal-content::before,
.modal.show .modal-content::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 20px;
  animation: confetti 3s ease-in-out infinite;
}

.modal.show .modal-content::before {
  left: 20px;
  background: var(--blue-500);
  animation-delay: 0s;
}

.modal.show .modal-content::after {
  right: 20px;
  background: var(--emerald-500);
  animation-delay: 0.5s;
}

@keyframes confetti {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(100px) rotate(720deg);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem;
    width: 95%;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  .modal-message {
    font-size: 1rem;
  }
  
  .modal-icon {
    width: 60px;
    height: 60px;
  }
  
  .modal-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .detail-item {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .detail-value {
    text-align: left;
    max-width: 100%;
  }
}