 :root {
     --primary-color: #4caf50;
     --secondary-color: #2c3e50;
     --accent-color: #81c784;
     --button-green: #00c853;
     --button-hover: #00b248;
     --button-gradient-start: #00e676;
     --button-gradient-end: #00c853;
     --dark-color: #212529;
     --gray-color: #6c757d;
     --shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
     --button-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
 }

 body {
     font-family: 'Open Sans', sans-serif;
     color: var(--dark-color);
     line-height: 1.6;
     background-color: #fff;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
 }

 .header {
     background-color: white;
     border-bottom: 1px solid #eaeaea;
     padding: 15px 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .logo-img {
     right: 0;
     height: 80px;
     max-width: 100%;
 }
 .lead {
     font-weight: 600;
 }

 .article-header {
     background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
     color: white;
     padding: 40px 0 30px;
     margin-bottom: 30px;
     position: relative;
     overflow: hidden;
 }

 .article-title {
     font-size: 2.2rem;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .meta-info {
     color: rgba(255, 255, 255, 0.85);
     font-size: 0.9rem;
     padding-top: 15px;
     margin-top: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
 }

 .content-section {
     margin-bottom: 40px;
 }

 .content-img {
     width: 100%;
     height: auto;
     border-radius: 8px;
     margin: 20px 0;
     box-shadow: var(--shadow);
 }

 .highlight-box {
     background-color: #f8f9fa;
     border-left: 4px solid var(--primary-color);
     padding: 20px;
     margin: 25px 0;
     border-radius: 0 5px 5px 0;
 }

 .stat-box {
     background-color: white;
     border-radius: 8px;
     padding: 20px;
     margin: 15px 0;
     box-shadow: var(--shadow);
     text-align: center;
     border-top: 3px solid var(--primary-color);
 }

 .stat-number {
     font-size: 2.2rem;
     font-weight: 700;
     color: var(--primary-color);
     line-height: 1;
     margin-bottom: 8px;
 }

 .stat-label {
     font-size: 1rem;
     color: var(--gray-color);
 }

 .step-card {
     border: 1px solid #eaeaea;
     border-radius: 8px;
     padding: 20px;
     margin-bottom: 20px;
     height: 100%;
     background-color: white;
     transition: all 0.3s ease;
 }

 .step-card:hover {
     box-shadow: var(--shadow);
 }

 .step-icon {
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 15px;
 }

 .offer-section {
     background-color: #f8f9fa;
     padding: 40px 20px;
     border-radius: 10px;
     margin: 30px 0;
     border: 1px solid #eaeaea;
 }

 .btn-primary-custom {
     background: linear-gradient(135deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
     border: none;
     padding: 14px 35px;
     font-weight: 700;
     border-radius: 8px;
     transition: all 0.3s;
     font-size: 1.2rem;
     color: white;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: var(--button-shadow);
     position: relative;
     overflow: hidden;
 }

 .btn-primary-custom::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: 0.5s;
 }

 .btn-primary-custom:hover {
     background: linear-gradient(135deg, var(--button-gradient-end) 0%, var(--button-hover) 100%);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
     color: white;
 }

 .btn-primary-custom:hover::before {
     left: 100%;
 }

 .btn-primary-custom:active {
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
 }

 .footer {
     background-color: var(--secondary-color);
     color: white;
     padding: 30px 0 15px;
     margin-top: 50px;
 }

 .disclaimer {
     background-color: #f8f9fa;
     border: 1px solid #eaeaea;
     color: var(--gray-color);
     padding: 15px;
     border-radius: 5px;
     font-size: 0.85rem;
     margin-top: 30px;
 }

 .warning-box {
     background-color: #fff3cd;
     border: 1px solid #ffeaa7;
     padding: 15px;
     margin: 20px 0;
     border-radius: 5px;
 }

 .instructions-list {
     background-color: #f8f9fa;
     border-radius: 8px;
     padding: 20px;
     margin: 20px 0;
 }

 .instructions-list li {
     margin-bottom: 12px;
     padding-left: 5px;
 }

 .instructions-list strong {
     color: var(--primary-color);
 }

 .author-info {
     background-color: #f8f9fa;
     padding: 20px;
     border-radius: 8px;
     margin: 20px 0;
     border-left: 4px solid var(--secondary-color);
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
     }

     50% {
         box-shadow: 0 3px 15px rgba(255, 107, 107, 0.5);
     }

     100% {
         box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
     }
 }

 @media (max-width: 768px) {
     .article-title {
         font-size: 1.8rem;
     }

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

     .btn-primary-custom {
         padding: 12px 25px;
         font-size: 1.1rem;
         width: 100%;
         margin-bottom: 10px;
     }

     .content-img {
         margin: 15px 0;
     }

     .article-header {
         padding: 30px 0 20px;
     }

     .logo-img {
         height: 50px;
     }
 }

 @media (max-width: 576px) {
     .article-title {
         font-size: 1.6rem;
     }

     .logo-img {
         height: 40px;
     }

     .btn-primary-custom {
         font-size: 1rem;
         padding: 12px 20px;
     }
 }

 .button-container {
     margin: 25px 0;
 }

 .button-icon {
     margin-right: 10px;
     font-size: 1.1em;
 }

 .success-stats {
     background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
     border-radius: 10px;
     padding: 25px;
     margin: 30px 0;
     border-left: 5px solid var(--button-green);
 }

 .success-stats h4 {
     color: var(--button-green);
     margin-bottom: 15px;
 }

 .cta-section {
     background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
     padding: 40px;
     border-radius: 12px;
     margin: 40px 0;
     text-align: center;
     border: 2px solid #bbdefb;
 }

 .cta-section h3 {
     color: var(--secondary-color);
     margin-bottom: 20px;
 }

 /* Add this CSS for the date alignment */
 .date-align-fix {
     text-align: left !important;
     direction: ltr;
     unicode-bidi: isolate;
 }

 .date-align-fix .fa-calendar-alt.ms-1 {
     margin-left: 0.25rem;
     margin-right: 0;
 }

 /* For mobile responsiveness */
 @media (max-width: 768px) {
     .date-align-fix {
         text-align: center !important;
     }
 }