.datacenter-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('{{ url_for("static", filename="images/datacenter-bg.jpg") }}');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.feature-card {
    transition: transform 0.3s;
    height: 100%;
    border-left: 4px solid #0d6efd;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.specs-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.specs-list li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-box {
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

ul {
    list-style-type: none;
}