 /* body {
      background: #ffeef2;
      font-family: 'Comic Sans MS', cursive, sans-serif;
    } */

    .features{
      background: linear-gradient(180deg, #fff5e4, #de490d);
      padding: 50px 100px 100px 100px;
      text-align: center;
    }

    .section-title {
      text-align: center;
      margin: 40px 0 20px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: #ff6f61;
      font-weight: bold;
    }

    .section-title p {
      font-size: 1.2rem;
      color: #34495e;
    }

    .flip-card {
      background-color: transparent;
      width: 100%;
      height: 400px;
      perspective: 1000px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      backface-visibility: hidden;
      padding: 25px;
      text-align: center;
    }

    .flip-card-front {
      background-color: #fff;
    }

    .flip-card-back {
      background-color: #ff6f61;
      color: white;
      transform: rotateY(180deg);
    }

    .feature-icon {
      font-size: 40px;
      color: #ff6f61;
      margin-bottom: 15px;
    }

    .feature-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #2c3e50;
    }

    .feature-text {
      font-size: 1rem;
      color: #555;
      margin: 10px 0 20px;
      text-align: left;
    }

    .btn-read {
      background-color: #ff6f61;
      color: #fff;
      border-radius: 25px;
      padding: 8px 20px;
      font-weight: bold;
      border: none;
    }

    .btn-read:hover {
      background-color: #e55b50;
    }