h4.pk {
  color: #FF6600 !important;
}

a.pk:link {
  color: #FF6600 !important;
  text-decoration: underline;
}

a.pk:visited {
  color:  #FF6600 !important;
  text-decoration: underline;
}

a.pk:hover {
  color:  #FF6600 !important;
  text-decoration: underline;
}

a.pk:active {
  color:  #FF6600 !important;
  text-decoration: underline;
}

div.animate_text {
    position: relative;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h3.animate_text, h4.animate_text {
    font-size: 1.25em;
    color: #ff0000;
    text-align: center;
    animation: animate 
        2.5s linear infinite;
}

@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}

p, li {
    color: #000000;
}


.headline-icon {
    width: 28px;
    height: 28px;
    color:#FF6600;
  }
  
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    flex: 1 1 300px; /* This makes it responsive */
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}  


.final-cta {
    background-color: #2c3e50; /* Professional Dark Blue/Grey */
    color: #ffffff;
    padding: 80px 10px;
    text-align: center;
    border-top: 5px solid #27ae60; /* TCM Green Accent */
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background-color: #27ae60; /* Growth Green */
    color: white;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background-color: transparent;
    color: white;
    padding: 18px 35px;
    font-size: 1.2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: white;
    color: #2c3e50;
}

.cta-subtext {
    margin-top: 25px !important;
    font-size: 0.9rem !important;
    color: #bdc3c7;
}