 .cta-section {
   text-align: center;
   margin-top: 50px;
   padding: 40px;
   background: rgba(100, 180, 255, 0.05);
   border: 1px solid rgba(100, 180, 255, 0.2);
   border-radius: 12px;
 }

 .cta-title {
   font-size: 24px;
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 20px;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .cta-text {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 30px;
 }

 .cta-actions {
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
 }

 .cta-btn {
   padding: 14px 28px;
   background: rgba(100, 180, 255, 0.1);
   border: 1px solid rgba(100, 180, 255, 0.4);
   border-radius: 8px;
   color: rgba(100, 180, 255, 0.9);
   text-decoration: none;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   font-size: 14px;
 }

 .cta-btn:hover {
   background: rgba(100, 180, 255, 0.2);
   border-color: rgba(100, 180, 255, 0.6);
   transform: translateY(-2px);
   text-decoration: none;
   color: rgba(100, 180, 255, 1);
 }

 .tagline {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.6);
   text-align: center;
   margin-top: 30px;
   font-style: italic;
   font-weight: 300;
 }


 @media (max-width: 768px) {

   .cta-section {
     padding: 30px 20px;
     margin-top: 40px;
   }

   .cta-title {
     font-size: 20px;
     /* Increased from 18px */
   }

   .cta-text {
     font-size: 16px;
     /* Increased from 14px */
   }

   .cta-btn {
     padding: 12px 22px;
     /* Increased padding */
     font-size: 14px;
     /* Increased from 12px */
   }

   .tagline {
     font-size: 17px;
     /* Increased from 15px */
   }
 }