.homehead {
  background: #4aa5f2;
  font-size: 14px;
  color: #fff;
  width: 125px;
  display: block;
  border-radius: 5px 5px 0 0;
  padding: 4px 0 2px 0;
  margin-left: 5%;
  letter-spacing: 0.5px;
  font-weight: normal;
}
.homdetail{
    padding: 3% 4%;
}
        .info-sections {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            text-align: left;
        }
        
        .info-section {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(74, 165, 242, 0.1);
            padding: 25px 25px 5px 25px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .info-section:hover {
            box-shadow: 0 20px 40px rgba(74, 165, 242, 0.15);
        }
        
        .info-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .info-icon {
            background: linear-gradient(135deg, #4aa5f2 0%, #3a8cd8 100%);
            color: white;
            width: 60px;
            height: 58px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            box-shadow: 0 8px 20px rgba(74, 165, 242, 0.3);
        }
        
        .info-icon svg {
            width: 35px;
            height: 35px;
        }
        
        .info-content h3, h2 {
            color: #444;
            margin-bottom: 8px;
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 0px;
            padding: 0px;
        }
        
        .info-content p {
            color: #5a6c7d;
            font-size: .9rem;
            font-weight: 400;
        }
        
        .feature-list {
            list-style-type: none;
            flex-grow: 1;
        }
        
        .feature-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            padding: 15px;
            border-radius: 12px;
            transition: background-color 0.3s ease;
        }
        
        .feature-list li:hover {
            background-color: rgba(74, 165, 242, 0.05);
        }
        
        .feature-list .list-icon {
            background-color: rgba(74, 165, 242, 0.1);
            color: #4aa5f2;
            border-radius: 10px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-list .list-icon svg {
            width: 20px;
            height: 20px;
        }
        
        .feature-list .list-content {
            flex-grow: 1;
        }
        
        .feature-list .list-content strong {
            color: #2c3e50;
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 0.92rem;
        }
        
        .feature-list .list-content div {
            color: #5a6c7d;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .security-note {
            background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
            border-radius: 15px;
            padding: 20px;
            margin-top: 25px;
            border-left: 5px solid #4aa5f2;
            display: flex;
            align-items: flex-start;
        }
        
        .security-note svg {
            color: #4aa5f2;
            width: 24px;
            height: 24px;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .security-note p {
            color: #2c3e50;
            font-weight: 500;
        }
        
        .security-note p strong {
            color: #4aa5f2;
        }
        
        @media (max-width: 768px) {
            .info-sections {
                flex-direction: column;
            }
            
            .info-section {
                min-width: 100%;
            }
            
            .info-header {
                flex-direction: column;
                text-align: center;
            }
            
            .info-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
.homdescription {
  padding: 0 13%;
  line-height: 24px;
  letter-spacing: 0.7px;
  color: #7590ac;
  font-size: 15px;
}