/* Highlighted list styling */
.highlighted-list {
    border-left: 4px solid var(--ama-bright-red);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlighted-list .badge {
    background-color: var(--ama-bright-red) !important;
}

/* AMA Brand Colors */
:root {
  --ama-dark-red: #46060C;
  --ama-deep-red: #840C16;
  --ama-bright-red: #E92D29;
  --ama-dark-blue: #00415C;
  --ama-teal-blue: #00A8C9;
  /* Primary Colors */
  --ama-blue: #00B2E3;

/* Footer styling */
.footer {
    background-color: var(--ama-dark-blue);
    color: #fff;
}

.footer h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 3px 0;
}

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

/* Newsletter styling */
.newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.newsletter-form input {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
}

.newsletter-form button {
    background-color: var(--ama-bright-red);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-form button:hover {
    background-color: var(--ama-deep-red);
}

/* Social icons */
.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background-color: var(--ama-bright-red);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* Footer contact information styling */
.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.75rem;
    line-height: 1.2;
    align-items: center;
    gap: 1rem;
}

.footer-contact-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item i {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.contact-info {
    font-size: 0.85rem;
}

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

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

/* Footer network links alignment */
footer .col-lg-3 ul.list-unstyled li a {
    display: block;
    padding: 0.25rem 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

footer .col-lg-3 ul.list-unstyled li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Fixed alignment for network column */
footer .col-lg-3:last-child ul.list-unstyled li {
    padding-left: 0;
    margin-left: 0;
}

footer .col-lg-3:last-child ul.list-unstyled li a {
    display: block;
    padding-left: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);

/* Enhanced footer column spacing */
.footer .row.gx-5 {
    --bs-gutter-x: 2rem;
}

.footer .col-lg-3 {
    position: relative;
}

@media (min-width: 992px) {
    .footer .col-lg-3 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .footer .col-lg-3 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

    margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        display: flex;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer ul li a.d-flex {
        justify-content: center;
    }
}

  /* Secondary Colors */
  --ama-light-blue: #00B2E3;
  --ama-midi-blue: #0077B6;
  --ama-light-red: #FF585D;
  --ama-midi-red: #CC2936;
  /* UI Colors */
  --ama-gradient: linear-gradient(135deg, var(--ama-light-blue), var(--ama-bright-red));
  /* Adding gold color for the third tier */
  --ama-gold: #FFD700;
}

/* Typography */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ama-dark-blue);
  font-size: 16px;
  line-height: 1.6;
}

h1 {
  font-size: 48.83px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ama-dark-red);
}

h2 {
  font-size: 31.25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ama-dark-red);
}

h3 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  color: var(--ama-dark-red);
}

/* Buttons */
.btn-primary {
  background-color: var(--ama-bright-red);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  min-width: 150px;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--ama-deep-red);
}

.btn-secondary {
  background-color: var(--ama-teal-blue);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  min-width: 150px;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--ama-dark-blue);
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* User dropdown styling */
.dropdown-toggle.rounded-pill {
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.dropdown-toggle.rounded-pill:hover {
  background-color: #f2f7ff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Navbar adjustments */
.navbar-nav {
  align-items: center;
}

.login-btn {
  padding: 0.375rem 0.75rem; /* Reduced padding */
  border: 1px solid var(--ama-bright-red); /* Thinner border */
  color: var(--ama-bright-red);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.9rem; /* Smaller font size */
}

.login-btn:hover {
  background-color: var(--ama-bright-red);
  color: white;
}

.join-btn {
  padding: 0.375rem 0.75rem; /* Reduced padding */
  background-color: var(--ama-bright-red);
  border: 1px solid var(--ama-bright-red); /* Thinner border */
  color: white;
  border-radius: 4px;
  font-weight: 600; /* Made Join button bolder */
  transition: all 0.2s ease;
  font-size: 0.9rem; /* Smaller font size */
}

.join-btn:hover {
  background-color: var(--ama-deep-red);
  border-color: var(--ama-deep-red);
  color: white;
}

@media (max-width: 991.98px) {
  .auth-buttons {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-toggle {
    justify-content: center;
    width: 100%;
  }

  .login-btn,
  .join-btn {
    width: 100%;
    text-align: center;
  }
}

/* Navigation */
.navbar {
  padding: 0.5rem 1rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.navbar-brand img {
  display: block;
  height: 45px;

/* Member card styling */
.member-card {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.member-card-empty {
  transition: all 0.3s ease;
  background-color: rgba(0,0,0,0.01);
  border: 1px dashed #dee2e6 !important;
}

.member-card-empty:hover {
  background-color: rgba(0,0,0,0.03);
}

  width: auto;
  transition: transform 0.2s ease;
  margin-right: 0.5rem;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 40px;
  }
}

.logo-full {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 1rem;
}

@media (max-width: 991.98px) {
  .logo-full {
    height: 40px;
  }
}
/* Newsletter Form Styles */
.newsletter-form {
    max-width: 350px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    width: 100%;
}

/* Footer Styles */
.footer {
  background-color: var(--ama-dark-blue);
  color: #FFFFFF;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--ama-light-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.footer ul li a:hover {
  color: var(--ama-light-red);
}

.footer ul li i {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  stroke-width: 2px;
}

/* Community Impact Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--ama-bright-red);
  color: white;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content p {
  margin-bottom: 0;
  line-height: 1.4;
}

.result-box {
  background-color: var(--ama-dark-blue);
  color: white;
  border-radius: 8px;
  text-align: center;
}

/* Disclaimer styling */
.disclaimer {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.disclaimer p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.disclaimer strong {
  font-weight: 600;
}

/* Marketing Resources Hub styling */
.card-body ul.list-unstyled li {
  margin-bottom: 8px;
}

.marketing-resources .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marketing-resources .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.marketing-resources .btn {
  font-weight: 500;
  padding: 0.5rem 1.5rem;
}

.marketing-resources .card-body {
  padding: 1.5rem;
}

.marketing-resources .card-footer {
  border-top: none;
  background: transparent;
  padding: 0 1.5rem 1.5rem;
}

.marketing-resources .rounded-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-resources h5.card-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.marketing-resources .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .marketing-resources .card {
    margin-bottom: 1rem;
  }

  .marketing-resources .card-body {
    padding: 1rem;
  }

  .marketing-resources .card-footer {
    padding: 0 1rem 1rem;
  }
}


.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.contact-info a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  font-size: 0.8rem;
}

.contact-info a:hover {
  color: var(--ama-light-red);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.contact-icon {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  stroke-width: 2px;
}

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

.social-icons a {
  color: var(--ama-light-red);
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: var(--ama-light-blue);
}

.social-icons i {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
}

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

.social-icons a {
  color: #FFFFFF;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: var(--ama-light-red);
}

.social-icons i {
  width: 20px;
  height: 20px;
  stroke-width: 2px;
}

@media (max-width: 767.98px) {
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer [class^="col-"] {
    margin-bottom: 2rem;
  }

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

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

/* Links */
a {
  color: var(--ama-deep-red);
  text-decoration: none;
}

a:hover {
  color: var(--ama-dark-red);
}

/* Utility Classes */
.text-primary {
  color: var(--ama-dark-red) !important;
}

.bg-primary {
  background-color: var(--ama-dark-blue) !important;
}

/* Section Spacing */
.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }
}

/* Membership Page Specific Styles - NEW ADDITIONS */
.membership-hero {
  background: var(--ama-gradient);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  background-color: #f8f9fa;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.form-check-input {
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.pricing-label {
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  margin: 0 5px;
}

#savingBadge {
  animation: pulse 2s infinite;
  margin-left: 8px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Tier Cards - Equal Height with Distinct Colors */
.tier-card {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: #fff;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.tier-card .tier-header {
  padding: 1.5rem;
  position: relative;
}

.tier-card .card-body {
  padding: 1.5rem;
  background-color: white;
  color: #333;
}

.tier-card .tier-header h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.tier-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
}

.tier-card .period {
  font-size: 1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}

.tier-card.featured {
  border: 2px solid var(--ama-midi-red);
  transform: scale(1.02);
}

.tier-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.tier-card .automated-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--ama-midi-red);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 0 12px 0 12px;
}

.tier-card .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.tier-card .feature-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}

.tier-card .feature-list li:before {
  content: "✓";
  color: var(--ama-midi-red);
  position: absolute;
  left: 0;
}

/* Free Tier */
.tier-card:nth-child(1) .tier-header {
  background-color: #f8f9fa;
  color: #333;
}

.tier-card:nth-child(1) .tier-header .price,
.tier-card:nth-child(1) .tier-header .period {
  color: #333;
}

/* Small Business Tier */
.tier-card:nth-child(2) .tier-header {
  background-color: var(--ama-midi-blue);
  color: white;
}

/* Enterprise Tier */
.tier-card:nth-child(3) .tier-header {
  background-color: var(--ama-dark-blue);
  color: white;
}

/* Enhanced CTAs */
.tier-card .btn {
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.tier-card .btn-primary,
.row .btn-primary {
  background-color: var(--ama-midi-red);
  border-color: var(--ama-midi-red);
  transition: all 0.3s ease;
}

.tier-card .btn-primary:hover,
.row .btn-primary:hover {
  background-color: var(--ama-bright-red);
  border-color: var(--ama-bright-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tier-card .btn-secondary,
.row .btn-secondary {
  background-color: var(--ama-dark-blue);
  border-color: var(--ama-dark-blue);
  transition: all 0.3s ease;
}

.tier-card .btn-secondary:hover,
.row .btn-secondary:hover {
  background-color: var(--ama-midi-blue);
  border-color: var(--ama-midi-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Membership buttons row styling */
.row.mb-5.justify-content-center {
  margin-top: -10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.row.mb-5.justify-content-center .col-md-3 {
  padding: 0 10px;
}

@media (max-width: 767px) {
  .row.mb-5.justify-content-center {
    flex-direction: column;
  }

  .row.mb-5.justify-content-center .col-md-3 {
    margin-bottom: 15px;
    width: 100%;
  }
}

/* Feature Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comparison-table th, 
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-table th {
  background-color: var(--ama-dark-blue);
  color: white;
  font-weight: 600;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(0,0,0,0.03);
}

.comparison-table .feature-check {
  color: var(--ama-midi-red);
  stroke-width: 3px;
}

.comparison-table .feature-missing {
  color: #ccc;
}

/* Getting Started Section */
.step {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--ama-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .pricing-toggle-container {
    padding: 10px 15px;
  }

  .tier-card.featured {
    transform: none;
  }

  .tier-card.featured:hover {
    transform: translateY(-5px);
  }

  #compareTiersBtn {
    display: none;
  }

  .comparison-section {
    overflow-x: auto;
  }

  .step {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .membership-hero {
    padding: 3rem 0;
  }

  .membership-hero h1 {
    font-size: 1.8rem;
  }

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

  .pricing-toggle-container {
    margin: 1.5rem 0;
    width: 100%;
    justify-content: center;
  }

  .yearly-note {
    font-size: 0.8rem;
  }

  .comparison-table {
    width: 700px;
  }

  .comparison-section {
    padding: 0;
  }
}

/* Bright Red Tier */
.tier-card[data-tier="bright-red"] .tier-header {
  background-color: var(--ama-bright-red);
}

.tier-card[data-tier="bright-red"] .tier-cta {
  background-color: var(--ama-bright-red);
  border-color: var(--ama-bright-red);
}

.tier-card[data-tier="bright-red"] .tier-cta:hover {
  background-color: var(--ama-deep-red);
}

/* Gold Tier */
.tier-card[data-tier="gold"] .tier-header {
  background-color: var(--ama-gold);
  color: #333; /* Darker text for better contrast on gold */
}

.tier-card[data-tier="gold"] .tier-cta {
  background-color: var(--ama-gold);
  border-color: var(--ama-gold);
  color: #333;
}

.tier-card[data-tier="gold"] .tier-cta:hover {
  background-color: #e3bd00;
}

/* Featured Tier with Glowing Border */
.tier-card.featured {
  border: 2px solid var(--ama-bright-red);
  position: relative;
  box-shadow: 0 0 15px rgba(233, 45, 41, 0.3);
  z-index: 2;
}

.tier-card.featured:hover {
  box-shadow: 0 0 25px rgba(233, 45, 41, 0.5);
}

/* Feature List Styles */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li i {
  width: 20px;
  height: 20px;
}

.feature-list .included {
  opacity: 1;
}

.feature-list .not-included {
  opacity: 0.5;
}

/* Feature Comparison Table */
.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);

/* Chambers of Commerce styling */
.chamber-list {
  list-style: none;
  padding-left: 0;
}

.chamber-list li {
  margin-bottom: 10px;
}

.chamber-list li:last-child {
  margin-bottom: 0;
}

.chamber-list a {
  display: inline-block;
  transition: color 0.2s ease;
}

.chamber-list a:hover {
  color: var(--ama-bright-red);
}

}

.comparison-table th {
  background-color: var(--ama-dark-blue);
  color: white;
  padding: 1rem;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #eee;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

/* Call-to-Action Buttons with Enhanced Hover Effects */
.tier-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: white;
}

.tier-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Benefits Section */
.benefit-card {
  height: 100%;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}


/* Member Perks Section Styling */
.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Improved card styling for Tools & Resources section */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hover-card:hover .icon-container {
  transform: scale(1.1);
}

.resource-links a {
  color: var(--ama-dark-blue);
  transition: color 0.2s ease;
  padding: 6px 0;
}

.resource-links a:hover {
  color: var(--ama-light-blue);
}

.card-header .btn-primary {
  background-color: var(--ama-light-blue);
  border-color: var(--ama-light-blue);
}

.card-header .btn-primary:hover {
  background-color: var(--ama-midi-blue);
  border-color: var(--ama-midi-blue);
}

.card .btn-primary {
  background-color: var(--ama-light-blue);
  border-color: var(--ama-light-blue);
  transition: all 0.3s ease;
  padding: 8px 20px;
}

.card .btn-primary:hover {
  background-color: var(--ama-midi-blue);
  border-color: var(--ama-midi-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card header styling */
.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
  padding: 1rem 1.25rem;
}

.card-header h2 {
  font-size: 1.5rem;
  color: var(--ama-dark-blue);
}


.section-header {
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header .lead {
    color: #6c757d;
    font-size: 1.15rem;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

.benefit-card i {
  color: var(--ama-bright-red);
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .tier-card {
    margin-bottom: 2rem;
  }

  .benefit-card {
    margin-bottom: 2rem;
  }
}

.membership-tier {
  border: none;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.membership-tier:hover {
  transform: translateY(-5px);
}

.membership-tier.featured {
  border: 2px solid var(--ama-midi-red);
}

.membership-tier .card-header {
  background: none;
  border-bottom: none;
  text-align: center;
  padding: 2rem 1rem;
}

.membership-tier .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ama-midi-red);
}

.membership-tier .price span {
  font-size: 1rem;
  color: #666;
}

.membership-benefits {
  list-style: none;
  padding-left: 0;
}

.membership-benefits li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.membership-benefits li:before {
  content: "✓";
  color: var(--ama-midi-red);
  position: absolute;
  left: 0;
}

/* Featured Members Cards */
.sponsor-card, .sponsor-card-empty {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.sponsor-card:hover, .sponsor-card-empty:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
  .col-md-2.col-sm-6 {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .col-md-2.col-sm-6 {
    width: 100%;
  }
}

.step {
  padding: 2rem;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--ama-midi-red);
  color: white;
  border-radius: 50%;
  display: flex;align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  color: var(--ama-dark-blue);
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: rgba(204, 41, 54, 0.1);
  color: var(--ama-midi-red);
}

.dropdown-item .feather {
  width: 16px;
  height: 16px;
  stroke-width: 2px;
}

/* Cards & Content */
.card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--ama-midi-red);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer */
/* Contact Info Styling */
.contact-info {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer .contact-info {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info .feather,
.footer .feather {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

/* Footer */
.footer {
  background-color: var(--ama-dark-blue);
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--ama-light-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--ama-light-red);
}

.footer a {
  color: var(--ama-light-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--ama-bright-red);
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: var(--ama-light-red);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.2s ease;
}

.socialicons a:hover {
  color: var(--ama-bright-red);
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .logo-mark {
    height: 32px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .btn-login,
  .btn-register {
    margin: 0.5rem 0;
    display: block;
    text-align: center;
    width: 100%;
  }

  .hero-section {
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .btn-lg {
    width: 100%;
    margin: 0.5rem 0;
  }

  .benefit-card {
    margin-bottom: 1rem;
  }

  .chapter-select {
    max-width: 100%;
    margin: 1rem 0;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    width: 100%;
    text-align: center;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }
}

/* Hero Section */
.hero-section {
  background: var(--ama-gradient);
  color: #FFFFFF;
  padding: 5rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}


/* Tool Cards */
.tool-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  background: white;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-color: var(--ama-midi-blue);
}

.tool-icon {
  background: rgba(0,178,227,0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tool-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-card {
  padding: 2rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  width: 40px;
  height: 40px;
  color: var(--ama-midi-blue);
}

.chapter-select {
  max-width: 80%;
  margin: 0 auto;
  padding: 8px;
  border: 2px solid var(--ama-light-blue);
  border-radius: 6px;
  background-color: white;
  color: var(--ama-dark-blue);
}

.chapter-select:focus {
  border-color: var(--ama-bright-red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 27, 28, 0.2);
}

.benefit-card h3 {
  margin: 1rem 0;
  color: var(--ama-dark-blue);
  font-size: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.feature-item i {
  width: 16px;
  height: 16px;
}

.card-title {
  color: var(--ama-dark-blue);
  font-weight: 600;
}

/* Membership Tiers */
.tier-card {
  height: 100%;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.tier-card.featured {
  border-color: var(--ama-bright-red);
  position: relative;
  box-shadow: 0 0 20px rgba(255, 27, 28, 0.15);
}

.tier-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  height: 100%;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ama-bright-red);
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
  border-bottom-left-radius: 8px;
}

.tier-card .tier-header {
  background: var(--ama-dark-blue);
  color: white;
  padding: 2rem;
  text-align: center;
}

.tier-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 1rem 0;
}

.tier-card .price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.tier-card .card-body {
  padding: 2rem;
}

.logo-full {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 1rem;
}

@media (max-width: 991.98px) {
  .logo-full {
    height: 40px;
  }
}

.navbar {
  padding: 0.5rem 1rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.navbar-brand img {
  display: block;
  height: 45px;
  width: auto;
  transition: transform 0.2s ease;
  margin-right: 0.5rem;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 40px;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 45px;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 40px;
  }
}

.tier-card.featured {
  border-color: var(--ama-bright-red);
}

.tier-header {
  background: linear-gradient(135deg, var(--ama-midi-blue), var(--ama-midi-red));
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 6px 6px 0 0;
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--ama-midi-blue);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ama-bright-red);
  font-weight: bold;
}

.btn-primary {
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pricing-section {
  background-color: #f8f9fa;
}

.final-cta {
  background: var(--ama-gradient);
  color: white;
}

.contact-info {
  font-size: 1.1rem;
}

.contact-info i {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

.membership-hero {
  background: var(--ama-gradient);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.alliance-card {
    background: white;
    border: 1px solid rgba(0, 178, 227, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.alliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 178, 227, 0.15);
    border-color: var(--ama-light-blue);
}

.alliance-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 178, 227, 0.1);
}

.alliance-card-header h3 {
    color: var(--ama-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.alliance-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--ama-midi-blue);
}

.location-info .location-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    stroke: var(--ama-midi-blue);
}

.alliance-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem; /* Add bottom margin to create more space */
    justify-content: center; /* Center-align buttons horizontally */
}

/* General button container alignment class */
.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.alliance-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.alliance-actions .btn-primary {
    background-color: var(--ama-bright-red);
    border-color: var(--ama-bright-red);
}

.alliance-actions .btn-primary:hover {
    background-color: var(--ama-deep-red);
    border-color: var(--ama-deep-red);
}

.alliance-actions .btn-outline-primary {
        color: var(--ama-midi-blue);
    border-color: var(--ama-midi-blue);
}

.alliance-actions .btn-outline-primary:hover {
    background-color: var(--ama-midi-blue);
    border-color: var(--ama-midi-blue);
    color: white;
}

@media (max-width: 768px) {
    .alliance-actions {
        flex-direction: column;
    }
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
    margin: 2rem auto;
    max-width: 300px;
}

.pricing-toggle-container .form-check.form-switch {
    margin: 0;
    padding: 0;
}

.form-check-input {
    width: 3rem !important;
    height: 1.5rem !important;
    margin: 0 1rem !important;
    cursor: pointer;
    background-color: var(--ama-light-blue);
    border-color: var(--ama-light-blue);
}

.form-check-input:checked {
    background-color: var(--ama-bright-red);
    border-color: var(--ama-bright-red);
}

.pricing-label {
    font-weight: 500;
    color: var(--ama-dark-blue);
    font-size: 1rem;
}

.pricing-toggle-container .badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
    background-color: #198754;
    font-weight: 500;
}

/* Price Display Styles */
.price {
    text-align: center;
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

/* Chapter Pages Styles */
.chapters-hero {
    background: linear-gradient(135deg, var(--ama-dark-blue) 0%, var(--ama-midi-blue) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.chapters-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.chapters-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.alliance-card {
    background: white;
    border: 1px solid rgba(0, 178, 227, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.alliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 178, 227, 0.15);
    border-color: var(--ama-light-blue);
}

.alliance-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 178, 227, 0.1);
}

.alliance-card-header h3 {
    color: var(--ama-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.alliance-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--ama-midi-blue);
}

.location-info .location-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    stroke: var(--ama-midi-blue);
}

.alliance-actions {
    display: flex;
    gap: 1rem;
}

.alliance-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
}

.search-filter-container {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.search-filter-container .input-group-text {
    background: transparent;
    border-right: none;
}

.search-filter-container .form-control {
    border-left: none;
}

.search-filter-container .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

@media (max-width: 768px) {
    .alliance-actions {
        flex-direction: column;
    }

    .chapters-hero {
        padding: 3rem 0;
    }

    .chapters-hero h1 {
        font-size: 2rem;
    }
}

/* Update/add these styles in your custom.css file */

/* Chapter Page Specific Styles */
.chapter-hero {
    background: linear-gradient(135deg, var(--ama-dark-blue) 0%, var(--ama-midi-blue) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
    text-align: center;
}

.chapter-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.membership-cta-card {
    border: 2px solid var(--ama-bright-red);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.membership-cta-card .btn-primary {
    background-color: var(--ama-bright-red);
    border-color: var(--ama-bright-red);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.membership-cta-card .btn-primary:hover {
    background-color: var(--ama-deep-red);
    border-color: var(--ama-deep-red);
    transform: translateY(-2px);
}

/* Mobile CTA Styling */
.mobile-chapter-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100; /* Below feedback widget */
}

/* Ensure feedback widget stays on top */
.feedback-wrapper {
    z-index: 1000 !important; /* Higher than mobile CTA */
}

@media (max-width: 767px) {
    .chapter-hero {
        padding: 3rem 0;
    }

    .chapter-hero h1 {
        font-size: 2rem;
    }

    .mobile-chapter-cta .btn {
        white-space: nowrap;
    }

    /* Add bottom padding to main content to prevent overlap with mobile CTA */
    main.container {
        padding-bottom: 80px;
    }
}

/* Newsletter Section Styling */
.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Paywall Content Styling */
.paywall-content {
    padding: 3rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--ama-light-blue), 0.05) 0%, rgba(var(--ama-bright-red), 0.05) 100%);
    border-radius: 8px;
}

.paywall-content i {
    stroke-width: 1.5px;
    margin-bottom: 1.5rem;
}

.paywall-content h4 {
    color: var(--ama-dark-blue);
    margin-bottom: 1rem;
}

.paywall-content p {
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.paywall-content .btn {
    min-width: 200px;
}

/* Welcome Animation Styles - Added at line 1000 */
.welcome-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.welcome-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s 0.2s ease-in-out forwards;
}

.welcome-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.welcome-icon {
    color: var(--ama-bright-red);
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.welcome-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 2rem 0;
}

.welcome-step {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.welcome-step:nth-child(1) {
    animation: fadeSlideUp 0.5s 0.6s ease forwards;
}

.welcome-step:nth-child(2) {
    animation: fadeSlideUp 0.5s 0.8s ease forwards;
}

.welcome-step:nth-child(3) {
    animation: fadeSlideUp 0.5s 1s ease forwards;
}

.step-icon {
    color: var(--ama-midi-blue);
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
}

.welcome-btn {
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 0.5s 1.3s ease forwards;
}

.welcome-animation-container.closing {
    opacity: 1;
    animation: fadeOut 0.5s ease-in-out forwards;
}

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

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

/* Footer styles */
.site-footer {
    background-color: #003366;
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-contact p {
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    min-width: 20px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* AI Tools Section Styling */
.ai-tools-section {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.ai-tools-section h2 {
    margin-bottom: 1rem;
}

.ai-tools-section p {
    margin-bottom: 2rem;
}

/* Tool Card Styling for AI Tools Section */
.ai-tools-section .tool-card,
.tool-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
}

.ai-tools-section .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ai-tools-section .tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 178, 227, 0.1);
}

.ai-tools-section .feature-item,
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: center;
}

.ai-tools-section .feature-item i {
    margin-right: 8px;
    color: var(--ama-midi-blue);
}

/* Help Center Styles */
.help-center-header {
    background-color: #f8f9fa;
    padding: 2rem 0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.user-type-selector .user-type-card {
    border: 1px solid #e9ecef;
}

.user-type-selector .user-type-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.user-type-selector .user-type-card .small {
    color: #6c757d;
}

.user-type-selector .user-type-card.active .small {
    color: rgba(255, 255, 255, 0.8);
}

.accordion-item {
    border-color: rgba(0,0,0,.1);
    margin-bottom: 0.5rem;
}

.accordion-button {
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.accordion-body {
    padding: 1.25rem;
}

.accordion-body ul, 
.accordion-body ol {
    padding-left: 1.5rem;
}

.accordion-body li {
    margin-bottom:0.5rem;
}

/* Custom CSS Styles */
:root {
    --ama-dark-blue: #0d1d38;
    --ama-light-blue: #347fc2;
    --ama-light-red: #fa6d6d;
    --ama-accent-color: #f8bf62;
--ama-text-color: #333333;
    --ama-light-gray: #f8f9fa;
}

/* Marketing Burn Highlight */
.marketing-burn {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
}

.highlight {
    color: var(--ama-light-red);
    font-weight: 700;
}

/* Community Impact Section */
.community-impact-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.example-scenario {
    background-color: white;
    border-left: 4px solid var(--ama-light-blue);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

.example-scenario ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.example-scenario li {
    margin-bottom: 0.5rem;
    position: relative;
}

/* Video Tutorial Section */
.video-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-video {
    background-color: var(--ama-dark-blue);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
color: white;
    text-align: center;
}

.placeholder-content {
    max-width: 80%;
}

.placeholder-content i {
    width: 64px;
    height: 64px;
    stroke: var(--ama-light-blue);
}

.tutorial-description {
    padding: 1rem;
}

.tutorial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.feature i {
    width:18px;height: 18px;
}

/* Automated Badge */
.automated-badge {
    background-color: var(--ama-light-blue);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ama-dark-blue);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    padding-right: 1rem;
}

.cookie-consent .cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-consent .btn-cookie {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent p {
        margin-bottom: 1rem;
        padding-right: 0;
    }

    .cookie-consent .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

.tier-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ama-dark-blue);
}

.tier-card .custom-pricing {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ama-dark-blue);
}
/* Comparison Table Styles */
.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin: 2rem 0;
  width: 100%;
}

.comparison-table th {
  background-color: var(--ama-dark-blue);
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.comparison-table td {
  padding: 12px 15px;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table .feature-check {
  color: var(--ama-bright-red);
  font-size: 18px;
}

.comparison-table .feature-missing {
  color: #ccc;
}

/* Trust signals */
.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.trust-signals i {
  margin-right: 0.5rem;
  color: var(--ama-midi-blue);
}

@media (max-width: 767px) {
    .col-md-3 .tool-card {
        margin-bottom: 1.5rem;
    }
}

/* Tool cards for AI assistants */
.tool-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
}

.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tool-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive adjustments for tool cards */
@media (max-width: 767px) {
    .tool-card {
        margin-bottom: 1rem;
    }

    .tool-card h3 {
        font-size: 1.1rem;
    }

    .tool-features .feature-item span {
        font-size: 0.85rem;
    }
}
/* Tool Cards */
.tool-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.tool-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-item i {
    margin-right: 10px;
    color: #28a745;
}

/* Add equal height rows for tools hub */
.row-cols-md-3 {
    display: flex;
    flex-wrap: wrap;
}

.row-cols-md-3 > .col {
    display: flex;
    margin-bottom: 25px;
}

.tools-hub-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Ensure all cards in the tools hub have consistent heights */
.tools-hub-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tools-hub-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tools-hub-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}0px;
}

/* Tool feature styling - position checkmarks above text for better vertical spacing */
.tool-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* AI Assistants Portal Styles */
.ai-tool-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

/* Fix for duplicate cards on homepage */
.card .body {
    display: none;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

/* Center help icon in navbar */
.nav-link[href="/help"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center help icon in mobile dropdown menu */
@media (max-width: 991.98px) {
    .navbar-collapse .d-flex .nav-link[href="/help"] {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.feature-list li:before {
  content: "✓";
  color: var(--ama-bright-red);
  position: absolute;
  left: 0;
  top: 0;
}

/* Membership Benefits Mobile Enhancements */
.membership-benefits-section {
  padding: 1.5rem 0;
}

.membership-benefits-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 1rem;
  transition: transform 0.2s ease;
}

.membership-benefits-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.membership-benefits-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  color: var(--ama-bright-red);
}

.membership-benefits-content h4 {
  margin: 0 0 0.5rem;
  color: var(--ama-dark-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.membership-benefits-content p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .membership-benefits-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .membership-benefits-section .lead {
    text-align: center;
    margin-bottom: 2rem;
  }

  .membership-benefits-item {
    padding: 15px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .membership-benefits-content h4 {
    font-size: 1.1rem;
    color: var(--ama-dark-blue);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .membership-benefits-icon {
    margin-bottom: 8px;
  }

  .membership-benefits-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }m;
  }
}
.membership-benefits-section {
  padding: 2rem 0;
}

.membership-benefits-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.membership-benefits-icon {
  flex: 0 0 50px;
  color: var(--ama-light-blue);
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-benefits-content {
  flex: 1;
}

@media (max-width: 767px) {
  .membership-benefits-item {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .membership-benefits-icon {
    flex: 0 0 40px;
  }

  .membership-benefits-content h4 {
    font-size: 1rem;
  }

  .membership-benefits-content p {
    font-size: 0.9rem;
  }

/* Breadcrumb styling */
.breadcrumb {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--ama-dark-blue);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--ama-midi-blue);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* Mobile responsive fixes for chapter page */
@media (max-width: 767.98px) {
  .chapter-page .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .chapter-page .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .chapter-page [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }

  .chapter-page .card {
    word-wrap: break-word;
  }

  .chapter-page .btn {
    white-space: normal;
  }

  /* Fix for AI Tools section that might overflow */
  .chapter-page .list-group-item {
    padding: 0.5rem;
  }

  .chapter-page .list-group-item h5,
  .chapter-page .list-group-item h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .chapter-page .list-group-item p.small {
    font-size: 0.75rem;
  }

  /* Ensure no fixed widths */
  .chapter-page * {
    max-width: 100%;
  }
}

}
/* Enhanced User Dropdown Styling */
.dropdown-menu {
  padding: 0.5rem 0;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1030;
  min-width: 220px;
  margin-top: 0.5rem;
}

.dropdown-menu .dropdown-header {
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.dropdown-menu .dropdown-item i {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
}

.dropdown-divider {
  margin: 0.25rem 0;
  opacity: 0.1;
}

/* Enhanced Navbar Styling */
.navbar {
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .nav-link {
  padding: 0.5rem 1rem;
  color: var(--bs-body-color);
  transition: all 0.2s ease;
}

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

/* User dropdown specific */
.navbar .dropdown .nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar .dropdown .nav-link:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.15);
}

/* Improved Mobile Responsiveness */
@media (max-width: 991.98px) {
  .navbar .dropdown .nav-link {
    display: inline-flex;
    margin-top: 0.5rem;
  }

  .dropdown-menu {
    position: absolute;
    width: 220px;
    right: 16px;
  }

  .navbar-nav {
    padding: 1rem 0;
  }
}
/* AI Assistants Portal Card Styling */
.ai-portal-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.ai-portal-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}

.ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

/* Tools Hub Card Styles */
.tools-hub-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tools-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item {
  margin-bottom: 8px;
}

.feature-item i {
  color: var(--ama-bright-red);
}

.btn-access-tool {
  transition: all 0.3s ease;
}

.btn-access-tool:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Chamber list styling */
.chamber-list {
  list-style: none;
  padding-left: 0;
}

.chamber-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.chamber-list li {
  margin-bottom: 12px;
  line-height: 1.3;
}

.chamber-list li:last-child {
  margin-bottom: 0;
}

.chamber-list a {
  color: var(--ama-dark-blue);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.chamber-list a:hover {
  color: var(--ama-bright-red);
}

.comparison-table th {
  background-color: var(--ama-dark-blue);
  color: white;
  padding: 1rem;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #eee;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

/* Responsive Styles for Tools Hub Cards */
@media (max-width: 768px) {
  .tools-hub-card {
    margin-bottom: 1rem;
  }

/* Button alignment in cards */
.hover-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hover-card .card-body .btn {
    margin-top: auto;
    width: 100%;
}

.hover-card .card-title,
.hover-card .text-muted {
    text-align: center;
}

.hover-card .icon-container {
    margin: 0 auto;
}


/* Toast notification styling */
#toast-container {
    max-width: 350px;
}

#toast-container .toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-weight: 500;
    opacity: 1;
}

#toast-container .bg-primary {
    background-color: #0866C6 !important;
}

#toast-container .bg-danger {
    background-color: #DC3545 !important;
}

#toast-container .toast-body {
    padding: 12px 15px;
    font-size: 16px;
}

/* Newsletter form styling */
.newsletter-form {
  max-width: 100%;
  margin: 0;
}

.footer .col-lg-3:first-child .newsletter-form {
  /* Smaller newsletter form for the upper left section */
  font-size: 0.9rem;
}

.footer .col-lg-3:first-child .newsletter-form input[type="email"] {
  width: 100%;
  padding: 6px 10px;
  margin-bottom: 8px;
}

.footer .col-lg-3:first-child .newsletter-form button {
  width: 100%;
  padding: 6px 10px;
}

.footer .col-lg-3:first-child .newsletter-form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* Social Icons */
.social-icons a {
  transition: all 0.3s ease;
  margin-right: 10px;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Featured Resources cards */
.featured-resources .card {
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.featured-resources .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.featured-resources .card-header {
  background: linear-gradient(135deg, var(--ama-light-blue) 0%, var(--ama-midi-blue) 100%);
  color: white;
  font-weight: bold;
}

.featured-resources .list-group-item {
  transition: all 0.2s ease;
  border-left: 0;
  border-right: 0;
}

.featured-resources .list-group-item:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

}
.tools-hub-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.tools-hub-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.tools-hub-card .tool-header {
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.tools-hub-card .features {
    margin: 1rem 0;
}

.tools-hub-card .feature-item {
    margin: 0.5rem 0;
    text-align: center;
}

/* Fix for duplicate cards on homepage */
.card .body {
    display: none;
}