.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures consistent card height */
    min-height: 200px; /* Set minimum card height (adjust as needed) */
  }
  
  .testimonial-text {
    flex-grow: 1; /* Makes text area expand to push client down */
    margin-bottom: 20px; /* Space between text and client */
  }

  .contact-info {
    text-align: left !important;
    display: block !important;
}
  
  .client {
    margin-top: auto; /* Pushes client to bottom */
    display: flex;
    align-items: center;
    gap: 15px; /* Space between image and text */
  }

  .social-links {
    display: flex;
    gap: 15px; /* Space between links */
    margin-top: 15px;

    justify-content: flex-start !important;
    margin-left: 0 !important;


    
}

.social-links a {
    /* Default state - visible blue text on white background */
    display: inline-block;
    background-color: white;
    color: var(--primary-color, #1a3a6d) !important; /* Force blue text */
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border: 3px solid var(--primary-color, #1a3a6d);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;

    
    
}

.social-links a:hover {
    /* Hover state - white text on blue background */
    background-color: var(--primary-color, #1a3a6d);
    color: white !important;
}



.pricing-card {
    position: relative; /* Needed for absolute positioning */
    height: 100%; /* Ensure all cards are same height */
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Adjust based on your content */
}

.pricing-content {
    flex: 1; /* Makes this element grow to push button down */
    padding-bottom: 20px; /* Space between content and button */
}

.btn-pricing {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: calc(100% - 60px); /* Account for card padding */
    margin: 20px; /* Center horizontally and add bottom margin */
    align-self: flex-end; /* Positions at bottom */

}
