
    .custom-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(191, 167, 106, 0.10), 0 1.5px 6px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  margin: 12px 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.custom-card:hover {
  box-shadow: 0 8px 32px rgba(191, 167, 106, 0.18), 0 2px 8px rgba(0,0,0,0.07);
  transform: translateY(-4px) scale(1.03);
}
.custom-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #bfa76a 0%, #ece6d9 100%);
  color: #232323;
  font-weight: 700;
  font-size: 1.08em;
  padding: 10px 28px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(191, 167, 106, 0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.custom-link:hover {
  background: #bfa76a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(191, 167, 106, 0.13);
}
.custom-link .custom-arrow {
  font-size: 1.1em;
  color: inherit;
  transition: transform 0.2s;
}
.custom-link:hover .custom-arrow {
  transform: translateX(-6px);
}
.name-teem{
    text-align: center;
}
/* ميوات رايزن سفت في الرئيسية */
 
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .features-section {
            padding: 4rem 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .gold-text {
            color: #bfa76a;
            font-weight: 900;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .gold-text::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #bfa76a;
            border-radius: 2px;
        }
        
        .feature-description {
            color: #232323;
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .features-grid {
            margin-top: 3rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid #bfa76a;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #bfa76a;
            margin-bottom: 20px;
        }
        
        .feature-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.25rem;
        }
        
        .feature-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .pattern {
            position: absolute;
            opacity: 0.03;
            font-size: 10rem;
            z-index: 0;
        }
        
        .pattern-1 {
            top: 20px;
            left: 20px;
        }
        
        .pattern-2 {
            bottom: 20px;
            right: 20px;
        }
        
        @media (max-width: 768px) {
            .features-section {
                padding: 2.5rem 0;
            }
            
            .gold-text {
                font-size: 1.6rem;
            }
            
            .feature-description {
                font-size: 1rem;
            }
        }
   