.features-header {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.features-header h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.features-header p {
    color: #888;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.feature-detail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-detail-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 159, 67, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 40px;
    margin-bottom: 25px;
    background: rgba(255, 159, 67, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #ff9f43;
}

.feature-detail-card h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.feature-detail-card p {
    color: #aaa;
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}