 #text_card_view .enterprise-heading {
	 font-size: 28px;
	 color: #1a4ed8;
	 font-weight: 700;
	 margin-bottom: 40px;
}
 #text_card_view .enterprise-cards-wrapper {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 20px;
	 justify-content: center;
}
 #text_card_view .enterprise-card {
	 background-color: #fff;
	 border-radius: 12px;
	 padding: 20px;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	 text-align: left;
	 transition: transform 0.2s ease;
	 display: flex;
	 flex-direction: column;
	 justify-content: space-between;
	 height: 100%;
}
 #text_card_view .enterprise-card:hover {
	 transform: translateY(-5px);
}
 #text_card_view .enterprise-card-title {
	 font-size: 18px;
	 font-weight: 600;
	 color: #222;
	 margin-bottom: 10px;
}
 #text_card_view .enterprise-card-content {
	 font-size: 15px;
	 line-height: 1.6;
	 color: #444;
}
 #text_card_view a {
	 color: #000;
}
 #text_card_view .common-btn {
	 padding: 6px 12px;
	 margin: 0;
	 font-size: 14px;
	 position: relative;
	 border: none;
}
 #text_card_view .oval {
	 border-radius: 50px;
}
 #text_card_view .square {
	 border-radius: 4px;
}
 #text_card_view .common-space {
	 padding: 40px 0;
	 margin: 0;
}