 body {
     background: #f5f5f5;
 }

 .services-section {
     padding: 60px 0;
 }

 .service-card {
     border-radius: 18px;
     padding: 30px;
     height: 100%;
     transition: 0.4s;
     border: 1px solid #ddd;
     overflow: hidden;
 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .service-card h3 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 18px;
     color: #111;
 }

 .service-card p {
     font-size: 15px;
     line-height: 1.9;
     color: #444;
 }

 .icon {
     font-size: 30px;
     margin-bottom: 18px;
 }

 /* BIG CARD */

 .big-card {
     min-height: 250px;
     background:
         linear-gradient(rgba(25, 25, 70, 0.55),
             rgba(60, 0, 80, 0.55)),
         url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1200&auto=format&fit=crop');

     background-size: cover;
     background-position: center;
     position: relative;
 }

 .big-card h2 {
     color: #fff;
     font-size: 45px;
     font-weight: 700;
     line-height: 1.2;
 }

 .arrow {
     position: absolute;
     right: 20px;
     bottom: 10px;
     font-size: 90px;
     color: #fff;
 }

 /* COLORS */

 .pink {
     background: #f8dfe8;
 }

 .blue {
     background: #dfe5ff;
 }

 .green {
     background: #d7f4ea;
 }

 .yellow {
     background: #f7edd8;
 }

 @media(max-width:768px) {

     .big-card h2 {
         font-size: 32px;
     }

     .service-card h3 {
         font-size: 24px;
     }

 }

 .cards-section {
     padding: 70px 0;
     background: #f4f7fb;
 }

 .custom-card {
     background: #fff;
     border-radius: 18px;
     padding: 35px 25px;
     text-align: center;
     height: 100%;
     transition: 0.4s;
     border: 1px solid #e5e5e5;
     position: relative;
     overflow: hidden;
 }

 .custom-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
 }

 .custom-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #0d6efd, #6610f2);
 }

 .card-icon {
     width: 80px;
     height: 80px;
     line-height: 80px;
     border-radius: 50%;
     background: #eef4ff;
     margin: 0 auto 25px;
     font-size: 34px;
     color: #0d6efd;
 }

 .custom-card h2 {
     font-size: 24px;
     font-weight: 700;
     color: #111;
     margin-bottom: 15px;
     line-height: 1.4;
 }

 .custom-card p {
     font-size: 15px;
     color: #666;
     line-height: 1.8;
 }

 .read-btn {
     display: inline-block;
     margin-top: 20px;
     padding: 10px 25px;
     border-radius: 30px;
     background: #0d6efd;
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
 }

 .read-btn:hover {
     background: #000;
     color: #fff;
 }
 