  
    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #fdfdfd;
    }

    .hero {
      background: url('https://images.unsplash.com/photo-1580910051073-64ddc01cfb3e?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
      color: white;
      padding: 120px 20px;
      text-align: center;
      position: relative;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      border-left: 5px solid #dc3545;
      padding-left: 12px;
      color: #333;
    }

    .feature-box {
      border: 1px solid #dee2e6;
      border-radius: 12px;
      padding: 25px;
      background-color: #ffffff;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .feature-box i {
      font-size: 2rem;
      color: #dc3545;
      margin-bottom: 10px;
    }

    .mockup-img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    ul li {
      margin-bottom: 10px;
      list-style: none;
      position: relative;
      padding-left: 30px;
    }

    ul li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: #28a745;
      font-weight: bold;
    }

 