.flex-container {
  display: flex;
  justify-content: space-between; /* Spaces out elements evenly */
  align-items: center;            /* Centers elements vertically */
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
body {
    background-color: #f8f9fa;
    color: #666666;
    line-height: 1.6;
}
  /* Master Grid Wrapper */
.features-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.features-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
/* Left Introduction Branding Column */
.features-intro {
    flex: 1 1 350px;
    padding-right: 20px;
}
  /* Re-engineered Red CTA Button Configuration */
.btn-red {
    display: inline-block;
    background-color: #dc3545; /* Primary Red */
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.btn-red:hover {
    background-color: #bd2130; /* Darker Focus Red on Hover */
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
}
  /* Right Four-Quadrant Processing Cards */
.features-grid {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
}

/* Interactive Card Shadow Activation Rules */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
}

/* Isolated Vector Icon Controls */
.feature-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(220, 53, 69, 0.08); /* Soft Red Accent Matte tint */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card .icon-box i {
    color: #dc3545; /* Red Font Icon Rendering */
    font-size: 28px;
}

/* Active Transformation Changes for Inner Card Contents */
.feature-card:hover .icon-box {
    background-color: #dc3545;
}

.feature-card:hover .icon-box i {
    color: #ffffff;
}

.feature-card h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: #777777;
}

/* Mobile Layout Constraints */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }
    .features-intro {
        padding-right: 0;
        text-align: center;
    }
}
.sub-title {
  font-size: 13px; /* Adjust the pixels (px) as needed */
  color: #dc3545;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}
.sub-title2 {
  font-size: 40px; 
  color:#1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.section-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 26px; 
  color:#1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 3px #666666;
  margin-bottom: 50px;
}
.section-subtitle {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color:#666666;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 25px; 
}
