    .decor-section {
      padding-top: 100px;
      width: 100%;
      max-width: 2000px;
      margin: 0 auto;
      overflow: hidden;
    }

    .decor-title {

      font-size: clamp(3rem, 5.62vw, 6.90rem);
      font-weight: 500;
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -2px;
      color: #1f1f1f;
      padding: 10px 0 8px;
      white-space: nowrap;
      font-family: "Monserrat";
      width: 100%;
    }

    .decor-title span {
      color: #d65a37;
    }

    .decor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      height: 85vh;
    }

    .decor-card {
      position: relative;
      overflow: hidden;
      
    }

    .decor-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.72);
    }

    .decor-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      text-align: center;
      padding: 30px 20px 35px;
    }

    .decor-overlay h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.5vw, 3rem);
      font-weight: 600;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 18px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.25);
      font-family: "Monserrat";
    }

    .decor-btn {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.6);
      overflow: hidden;
      border-radius: 3px;
      text-decoration: none;
    }

    .decor-btn .btn-text {
      background: rgba(255,255,255,0.12);
      color: #fff;
      font-size: 0.9rem;
      padding: 12px 18px;
      backdrop-filter: blur(2px);
      font-family: "Monserrat";
    }

    .decor-btn .btn-icon {
      background: #d65a37;
      color: #fff;
      font-size: 1.2rem;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 992px) {
      .decor-title {
        
        white-space: normal;
        line-height: 1;
        padding: 15px 10px;
      }

      .decor-grid {
        grid-template-columns: 1fr;
        height: auto;
      }

      .decor-card {
        height: 400px;
      }
    }

    @media (max-width: 576px) {
      .decor-overlay h2 {
        font-size: 2rem;
      }

      .decor-card {
        height: 320px;
      }

      .decor-btn .btn-text {
        font-size: 0.8rem;
        padding: 10px 14px;
      }

      .decor-btn .btn-icon {
        padding: 9px 14px;
      }
    }