diff --git a/static/css/style.css b/static/css/style.css
index 7818f46..1189a5d 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1953,3 +1953,55 @@ h5 {
letter-spacing: 0.05rem;
margin-bottom: 0.6rem;
}
+
+/* Latest News Section */
+.latest-news .news-box {
+ box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
+ padding: 50px 30px;
+ transition: all ease-in-out 0.4s;
+ background: #fff;
+ height: 100%;
+}
+
+.latest-news .news-box:hover {
+ transform: translateY(-10px);
+}
+
+.latest-news .news-box h4 {
+ font-weight: 500;
+ margin-bottom: 15px;
+ font-size: 24px;
+}
+
+.latest-news .news-box h4 a {
+ color: #37517e;
+ transition: ease-in-out 0.3s;
+}
+
+.latest-news .news-box:hover h4 a {
+ color: #47b2e4;
+}
+
+.latest-news .news-box p {
+ line-height: 24px;
+ font-size: 14px;
+ margin-bottom: 0;
+}
+
+.latest-news .post-meta {
+ font-size: 14px;
+ color: #848484;
+ margin-bottom: 15px;
+}
+
+.latest-news .read-more {
+ color: #47b2e4;
+ font-weight: 600;
+ font-size: 14px;
+ display: inline-block;
+ margin-top: 15px;
+}
+
+.latest-news .read-more:hover {
+ color: #2d9fd1;
+}