.three-col-section {
    background: #fff;
    padding: 80px 0;
}

.three-col-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section */
.three-col-header {
    text-align: center;
    margin-bottom: 60px;
}

.three-col-header h2 {
    font-size: 45px !important;
    line-height: 1.2;
    font-weight: 500;
    color: #3051E6;
    margin: 0 20rem 20px 20rem;
}

.three-col-header .intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.three-col-header .intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #000022;
    margin: 0;
}

/* Three Column Grid */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* Column Item - Card Style */
.col-item {
    background: #FFFFFF;
    padding: 40px 30px 30px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: -webkit-fill-available;
    height: 275px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 23px 36px #00000029;
    opacity: 1;
}

.col-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
}

.top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
/* Bottom Border Colors */
.col-item:nth-child(1)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* right: 30px; */
    width: -webkit-fill-available;
    height: 4px;
    background: #3051E6;
    border-radius: 2px;
}

.col-item:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* right: 30px; */
    width: -webkit-fill-available;
    height: 4px;
    background: #FF551A;
    border-radius: 2px;
}

.col-item:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* right: 30px; */
    width: -webkit-fill-available;
    height: 4px;
    background: #0E0D6A;
    border-radius: 2px;
}

/* Icon Container */
.col-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.col-icon img {
    max-width: 62px;
    max-height: 51px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Column Title with Colors */
.col-item h3 {
    font-size: 25px !important;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* Title Colors */
.col-item:nth-child(1) h3 {
    color: #3051E6;
}

.col-item:nth-child(2) h3 {
    color: #FF551A;
}

.col-item:nth-child(3) h3 {
    color: #0E0D6A;
}

/* Column Text */
.col-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #000022;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}


/* @media screen and (max-width: 1024px) {
    .three-col-section {
        padding: 60px 0;
    }
    
    .three-col-header h2 {
        font-size: 42px !important;
    }
    
    .three-col-grid {
        gap: 30px;
    }
    
    .col-item h3 {
        font-size: 24px !important;
    }
    
    .col-item p {
        font-size: 15px;
    }
} */

@media screen and (max-width: 768px) {
    .three-col-section {
        padding: 30px 0;
        background: #FFFFFF;
    }
    
    .three-col-container {
        padding: 30px;
    }
    
    .three-col-header {
        margin-bottom: 40px;
    }
    
    .three-col-header h2 {
        font-size: 31px !important;
        margin: 0rem 1rem 2rem;
        text-align: center;
    }
    
    .three-col-header .intro-text p {
        font-size: 14px !important;
        line-height: 1.5;
    }
    
    .three-col-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .col-item {
        padding: 30px 25px 25px;
        height: auto;
    }
    
    .col-icon {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .col-icon img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .col-item h3 {
        font-size: 22px !important;
    }
    
    .col-item p {
        font-size: 14px;
    }

}

/* @media screen and (max-width: 480px) {
    .three-col-header h2 {
        font-size: 26px !important;
    }
    
    .three-col-header .intro-text p {
        font-size: 14px;
    }
    
    .col-item {
        padding: 25px 20px 20px;
    }
    
    .col-item h3 {
        font-size: 20px !important;
    }
} */