 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 body {
     background-color: #f1f5f9;
     line-height: 1.6;
}
 .subscriptions-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 3rem 1.5rem;
     min-height: calc(100vh - 120px);
}
 .section-title {
     font-size: 2.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 2rem;
     text-align: center;
     letter-spacing: -0.025em;
}
 .plans-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 3rem;
     justify-items: center;
}
 .plan-card {
     position: relative;
     background-color: #ffffff;
     border-radius: 20px;
     box-shadow: 0 12px 35px rgba(0,0,0,0.1);
     padding: 3.5rem 2.5rem;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     overflow: hidden;
     max-width: 420px;
     width: 100%;
}
 .plan-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
 .plan-card[data-label]:not([data-label=""])::before {
     content: attr(data-label);
     position: absolute;
     top: 1.5rem;
     right: -3.5rem;
     color: white;
     padding: 0.375rem 3.5rem;
     font-size: 0.875rem;
     font-weight: 700;
     transform: rotate(45deg);
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     z-index: 10;
     background: linear-gradient(135deg, hsl(280, 90%, 60%), 
     hsl(32, 100%, 58%) 
     ), hsl(152, 80%, 52%);
}
 .plans-grid {
     counter-reset: plan-count;
}
 .plan-card {
     counter-increment: plan-count;
     --i: var(--plan-count, 0);
}
 .plan-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 1rem;
}
 .plan-price {
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 0.5rem;
}
 .plan-price span {
     font-size: 1rem;
     font-weight: 400;
     color: #6b7280;
}
 .plan-duration {
     font-size: 0.875rem;
     color: #6b7280;
     margin-bottom: 1.5rem;
}
 .plan-features {
     list-style: none;
     margin-bottom: 2rem;
     text-align: left;
}
 .plan-features li {
     font-size: 1rem;
     color: #374151;
     margin-bottom: 0.75rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .plan-features .checkmark::before {
     content: '✔';
     color: #10b981;
     font-size: 1rem;
}
 .subscribe-btn, .active-btn {
     padding: 0.75rem;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .subscribe-btn {
     background-color: #3b82f6;
     color: #ffffff;
     cursor: pointer;
}
 .subscribe-btn:hover {
     background-color: #2563eb;
     transform: scale(1.02);
}
 .active-btn {
     background-color: #10b981;
     color: #ffffff;
     cursor: default;
     opacity: 0.9;
}
 .active-btn:hover {
     background-color: #0a8f68;
     transform: scale(1.02);
}
 @media (max-width: 768px) {
     .subscriptions-container {
         padding: 2rem 1rem;
    }
     .section-title {
         font-size: 2rem;
    }
     .plans-grid {
         grid-template-columns: 1fr;
    }
}
 @media (max-width: 480px) {
     .plan-card {
         padding: 1.5rem;
    }
     .plan-title {
         font-size: 1.25rem;
    }
     .plan-price {
         font-size: 1.75rem;
    }
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 body {
     background-color: #f1f5f9;
     line-height: 1.6;
}
 .checkout-container {
     max-width: 600px;
     margin: 0 auto;
     padding: 3rem 1.5rem;
     text-align: center;
     min-height: calc(100vh - 120px);
     display: flex;
     flex-direction: column;
     justify-content: center;
}
 .section-title {
     font-size: 2.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 2rem;
     letter-spacing: -0.025em;
}
 .price-section {
     margin-bottom: 2rem;
     padding: 1rem;
     background-color: #f9fafb;
     border-radius: 8px;
     border: 1px solid #e5e7eb;
     position: relative;
}
 .checkout-container {
     counter-reset: ribbon;
}
 .price-section {
     counter-increment: ribbon;
     --i: var(--ribbon, 0);
}
 .price-section[data-label]:not([data-label=""])::before {
     content: attr(data-label);
     position: absolute;
     top: 1.5rem;
     right: -3.5rem;
     padding: 0.375rem 3.5rem;
     background: linear-gradient(135deg, hsl(280, 90%, 60%), 
     hsl(32, 100%, 58%) 
     ), hsl(152, 80%, 52%);
     color: white;
     font-weight: 700;
     font-size: 0.875rem;
     transform: rotate(45deg);
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
     z-index: 10;
}
 .price-section.super::before {
     background-color: #8b5cf6;
}
 .price-section p {
     font-size: 1rem;
     color: #374151;
     margin-bottom: 0.5rem;
}
 .price-section .price-value {
     font-weight: 700;
     color: #1f2937;
}
 .price-section .discount {
     font-size: 0.875rem;
     color: #6b7280;
     font-style: italic;
}
 .price-section .coupon-applied {
     font-size: 0.9375rem;
     color: #10b981;
     font-weight: 600;
     margin-top: 0.5rem;
}
 .price-section .total-after-discount {
     font-size: 1rem;
     font-weight: 700;
     color: #10b981;
     margin-top: 0.5rem;
}
 .price-section .free-message {
     font-size: 1rem;
     color: #10b981;
     font-weight: 600;
     margin-top: 0.5rem;
}
 .features-section {
     margin-bottom: 2rem;
     padding: 1rem;
     background-color: #f9fafb;
     border-radius: 8px;
     border: 1px solid #e5e7eb;
     text-align: left;
}
 .features-section .plan-features {
     list-style: none;
     margin-bottom: 0;
}
 .features-section .plan-features li {
     font-size: 1rem;
     color: #374151;
     margin-bottom: 0.75rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .features-section .plan-features .checkmark::before {
     content: '✔';
     color: #10b981;
     font-size: 1rem;
}
 .coupon-section {
     margin-bottom: 2rem;
     padding: 1rem;
     background-color: #f9fafb;
     border-radius: 8px;
     border: 1px solid #e5e7eb;
}
 .coupon-section .reminder {
     font-size: 1rem;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .coupon-section .reminder .coupon-symbol {
     font-size: 1.25rem;
}
 .coupon-list {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .coupon-card {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.75rem;
     background-color: #ffffff;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .coupon-card:hover {
     transform: scale(1.05);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
 .coupon-card .coupon-details {
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .coupon-card .coupon-details span {
     font-size: 1rem;
     color: #374151;
}
 .coupon-card .coupon-details .coupon-symbol {
     font-size: 1.25rem;
}
 .coupon-card .redeem-coupon {
     padding: 0.5rem 1rem;
     background-color: #3b82f6;
     color: #ffffff;
     border: none;
     border-radius: 8px;
     font-size: 0.875rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .coupon-card .redeem-coupon:hover {
     background-color: #2563eb;
     transform: scale(1.02);
}
 .view-all-btn {
     margin-top: 1rem;
     padding: 0.5rem 1rem;
     background-color: transparent;
     border: 1px solid #3b82f6;
     border-radius: 8px;
     color: #3b82f6;
     font-size: 0.875rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease, color 0.3s ease;
}
 .view-all-btn:hover {
     background-color: #3b82f6;
     color: #ffffff;
}
 .coupon-list.collapsed .coupon-card:nth-child(n+2) {
     display: none;
}
 .status-message {
     font-size: 1.25rem;
     color: #10b981;
     margin: 2rem 0;
     padding: 0.5rem 1rem;
     background-color: #d1fae5;
     border-radius: 4px;
     display: block;
     width: 100%;
}
 .error-message {
     background-color: #fee2e2;
     border: 1px solid #ef4444;
     border-radius: 8px;
     padding: 1rem;
     margin: 2rem 0;
     color: #b91c1c;
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     width: 100%;
}
 .error-message .error-icon {
     font-size: 2rem;
     font-weight: bold;
}
 .error-message a {
     color: #3b82f6;
     text-decoration: underline;
     font-weight: 600;
}
 .error-message a:hover {
     color: #2563eb;
}
 .message {
     margin-top: 0.5rem;
     font-size: 0.875rem;
}
 .message.error {
     color: #dc2626;
}
 .message.success {
     color: #10b981;
}
 .billing-section {
     margin-bottom: 2rem;
}
 .billing-section h3 {
     font-size: 1.25rem;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: 1rem;
}
 .billing-section .form-group {
     margin-bottom: 1rem;
}
 .billing-section label {
     display: block;
     font-size: 0.9375rem;
     font-weight: 600;
     color: #1f2937;
     margin-bottom: 0.25rem;
}
 .billing-section input, .billing-section select {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
     font-size: 1rem;
     outline: none;
     transition: border-color 0.3s ease;
}
 .billing-section input:focus, .billing-section select:focus {
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
 .billing-section .form-row {
     display: flex;
     gap: 1rem;
}
 .billing-section .form-row .form-group {
     flex: 1;
}
 .billing-section select option {
     padding: 0.5rem;
}
 .submit-button {
     width: 100%;
     padding: 1rem;
     background-color: #3b82f6;
     color: #ffffff;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .submit-button:hover {
     background-color: #2563eb;
     transform: scale(1.02);
}
 .activate-button {
     width: 100%;
     padding: 1rem;
     background-color: #10b981;
     color: #ffffff;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .activate-button:hover {
     background-color: #059669;
     transform: scale(1.02);
}
 .hidden {
     display: none;
}
 @media (max-width: 768px) {
     .checkout-container {
         padding: 2rem 1rem;
    }
     .section-title {
         font-size: 2rem;
    }
     .billing-section .form-row {
         flex-direction: column;
    }
}
 @media (max-width: 480px) {
     .coupon-card {
         flex-direction: column;
         align-items: flex-start;
         gap: 0.5rem;
    }
     .coupon-card .redeem-coupon {
         width: 100%;
    }
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
}
 body {
     background-color: #f1f5f9;
     line-height: 1.6;
     color: #1f2937;
}
 .receipt-container {
     max-width: 600px;
     margin: 20px auto;
     padding: 20px;
     background-color: #ffffff;
     border: 1px solid #e5e7eb;
     border-radius: 8px;
}
 .receipt-section {
     background-color: #ffffff;
     padding: 20px;
     position: relative;
}
 .receipt-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 6px;
     background: linear-gradient(90deg, #3b82f6, #10b981);
}
 .receipt-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
     border-bottom: 2px solid #e5e7eb;
     padding-bottom: 10px;
}
 .receipt-header h2 {
     font-size: 24px;
     font-weight: 800;
     line-height: 1.2;
}
 .receipt-header .success-icon {
     display: inline-block;
     width: 30px;
     height: 30px;
     background-color: #d1fae5;
     border-radius: 50%;
     text-align: center;
     line-height: 30px;
     font-size: 18px;
     color: #10b981;
}
 .email-message {
     font-size: 18px;
     font-weight: 600;
     color: #10b981;
     margin-bottom: 20px;
     text-align: center;
     display: none;
}
 .email-only {
     display: none;
}

 .receipt-details h3, .billing-details h3, .transaction-details h3, .features-section h3 {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 10px;
     padding-left: 8px;
     border-left: 4px solid #3b82f6;
}
 .receipt-details p, .billing-details p, .transaction-details p {
     font-size: 14px;
     color: #374151;
     margin-bottom: 8px;
     display: flex;
     justify-content: space-between;
}
 .receipt-details p span, .billing-details p span, .transaction-details p span {
     font-weight: 600;
     color: #1f2937;
}
 .receipt-details .price-value, .receipt-details .total-after-discount {
     font-weight: 700;
     color: #1f2937;
}
 .receipt-details .total-after-discount {
     color: #10b981;
     font-size: 16px;
}
 .features-section .plan-features {
     list-style: none;
     margin-bottom: 0;
}
 .features-section .plan-features li {
     font-size: 14px;
     color: #374151;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     gap: 8px;
}
 .features-section .plan-features .checkmark {
     display: inline-block;
     width: 20px;
     height: 20px;
     background-color: #d1fae5;
     border-radius: 50%;
     text-align: center;
     line-height: 20px;
     font-size: 12px;
     color: #10b981;
}
 .action-buttons {
     margin-top: 20px;
     display: flex;
     justify-content: center;
     gap: 10px;
}
 .action-buttons a {
     padding: 10px 20px;
     border: none;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
}

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-feature-settings: normal;
}
 .contact-us-page {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 40px 20px;
}
 .contact-us-container {
     max-width: 680px;
     width: 100%;
     background: #ffffff;
     padding: 48px;
     border-radius: 12px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
     animation: fadeIn 0.6s ease-in-out;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .contact-header {
     text-align: center;
     margin-bottom: 32px;
}
 .contact-header h1 {
     font-size: 30px;
     color: #1a202c;
     font-weight: 500;
     margin-bottom: 8px;
     line-height: 1.4;
}
 .form-group {
     margin-bottom: 24px;
}
 .input-container label {
     display: flex;
     align-items: center;
     font-size: 16px;
     color: #2d3748;
     font-weight: 500;
     margin-bottom: 8px;
}
 .input-container label svg {
     margin-right: 8px;
     width: 18px;
     height: 18px;
}
 .form-group input, .form-group textarea, .form-group select {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid #cbd5e0;
     border-radius: 8px;
     font-size: 16px;
     color: #1a202c;
     background: #f7fafc;
     transition: all 0.3s ease;
     line-height: 1.5;
}
 .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
     border-color: #2b6cb0;
     background: #ffffff;
     box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
     outline: none;
}
 .form-group textarea {
     resize: vertical;
     min-height: 100px;
}
 .form-group select {
     background: #f7fafc url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center;
     background-size: 16px;
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
}
 .error {
     color: #c53030;
     font-size: 14px;
     margin-top: 6px;
     display: block;
     background: #fff5f5;
     padding: 4px 8px;
     border-radius: 4px;
     font-weight: 500;
     line-height: 1.5;
}
 .form-error {
     color: #c53030;
     font-size: 16px;
     text-align: center;
     margin-bottom: 24px;
     background: #fff5f5;
     padding: 12px;
     border-radius: 8px;
}
 .form-actions {
     display: flex;
     gap: 16px;
     justify-content: space-between;
     margin-top: 32px;
}
 .submit-btn, .subscriptions-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 24px;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 500;
     cursor: pointer;
     transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
     line-height: 1.5;
}
 .submit-btn {
     background: #2b6cb0;
     color: #ffffff;
}
 .submit-btn:hover {
     background: #2c5282;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}
 .submit-btn:active {
     transform: translateY(0);
     box-shadow: 0 2px 6px rgba(43, 108, 176, 0.2);
}
 .submit-btn:disabled {
     background: #a0aec0;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
}
 .subscriptions-btn {
     background: #38a169;
     color: #ffffff;
     text-decoration: none;
     width: 100%;
     max-width: 300px;
     margin: 0 auto;
}
 .subscriptions-btn:hover {
     background: #2f855a;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}
 .submit-btn svg, .subscriptions-btn svg {
     width: 18px;
     height: 18px;
}
 .success-message {
     text-align: center;
     padding: 40px;
     background: #edf2f7;
     border-radius: 12px;
     border: 1px solid #c6f6d5;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
     animation: popIn 0.5s ease;
}
 @keyframes popIn {
     from {
         opacity: 0;
         transform: scale(0.95);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .success-icon {
     margin-bottom: 16px;
}
 .success-message h2 {
     font-size: 26px;
     color: #1a202c;
     font-weight: 500;
     margin-bottom: 16px;
     line-height: 1.4;
}
 @media (max-width: 768px) {
     .contact-us-container {
         padding: 24px;
    }
     .contact-header h1 {
         font-size: 26px;
    }
     .form-actions {
         flex-direction: column;
         gap: 12px;
    }
     .submit-btn {
         width: 100%;
    }
}

@media (min-width: 992px) {
  #courses-layout-row {
    display: flex !important;
    flex-wrap: nowrap;
  }

  #courses-layout-row > .filters-sidebar {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }

  #courses-layout-row > .courses-main-content {
    flex: 0 0 80% !important;
    max-width: 80% !important;
  }
    .courses-container .courses .courses-listing li {
        width: calc(33% - 3%) !important;
        margin: 0 1.5% 25px !important;
    }
}
.course-heading-area> h2, p{
    text-align: left;
}

.courses-main-content .courses-listing {
  width: 100% !important;
}

.sticky-top {
  top: 2rem; 
  z-index: 10;
}

#my-filters {
  border-radius: 1.5rem;
}

.input-group.input-group-lg.shadow-sm {
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
textarea, input[type="text"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"]{
  border: none !important;
  outline: none !important;
}


.input-group > textarea, input[type="text"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"]:hover,
textarea, input[type="text"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"]:focus,
textarea, input[type="text"], input[type="url"], input[type="email"], input[type="password"], input[type="tel"]:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.search-icon{
    height: 37px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group > span {
    color: rgba(0, 0, 0, 0.2);
    font: inherit;
}
.search-filter-group__title{
    font-weight: 700;
}

.search-filter-group__list > label {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

 .page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.subscription-info-container {
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;

    @media (min-width: 1200px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .header {
    background: #f8f9fa;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;

    h3 {
      margin: 0 0 8px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    h5 {
      margin: 0 0 8px;
      font-size: 20px;
      font-weight: 600;
    }

    h6 {
      margin: 0;
      font-size: 28px;
      font-weight: 700;
    }
  }

  .body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .info {
    margin-bottom: 24px;

    p {
      margin: 12px 0;
      font-size: 15px;
      color: #444;

      &.expires {
        font-weight: 500;
      }

      &.days-left {
        margin-top: 16px;
        color: #27ae60;
        font-weight: 500;
      }
    }

    .warning {
      color: #856404;
      padding:  padding: 12px;
      border-radius: 8px;
      font-weight: 500;
      text-align: center;
      border: 1px solid #ffeaa7;
    }
  }

  .benefits-title {
    font-weight: 600;
    margin: 0 0 16px 0;
  }

  .benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
  }

  .benefit {
    padding: 10px 0;
    border-top: 1px solid #eee;
    font-size: 15px;

    &:last-child {
      border-bottom: 1px solid #eee;
    }
  }

  .footer,
  .no-sub {
    text-align: left;
    margin-top: 40px;
  }

  .no-sub {
    h1 {
      font-size: 28px;
      margin-bottom: 12px;
    }

    p {
      font-size: 17px;
      margin-bottom: 32px;
    }
  }

  .btn {
    display: inline-block;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    }
  }
}