/* Start custom CSS for text-editor, class: .elementor-element-dbe4c49 *//* Overall Page Styling */
.dell-poweredge-overview,
.dell-poweredge-categories,
.dell-poweredge-features,
.dell-poweredge-use-cases,
.dell-poweredge-testimonials,
.dell-poweredge-cta {
    padding: 40px 0;
    margin-bottom: 30px;
}

/* Headings */
h2 {
    color: #0076CE; /* Dell blue color */
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0076CE;
}

h3 {
    color: #00447C; /* Darker Dell blue for sub-headings */
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Text styling */
p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Server Categories Styling */
.server-category {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #0076CE;
}

.server-category:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.server-category-link {
    display: inline-block;
    margin-top: 10px;
    color: #0076CE;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.server-category-link:hover {
    color: #00447C;
    text-decoration: underline;
}

/* Key Features Styling */
.feature {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Use Cases Styling */
.use-case {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-top: 4px solid #0076CE;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: #f3f3f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonials Styling */
.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial:before {
    content: """;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 60px;
    color: rgba(0, 118, 206, 0.1);
    font-family: Georgia, serif;
}

blockquote {
    margin: 0;
    padding-left: 30px;
}

blockquote p {
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    color: #666;
    font-style: normal;
}

/* CTA Section Styling */
.dell-poweredge-cta {
    background: #f2f9ff;
    text-align: center;
    padding: 50px 20px;
    border-radius: 5px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.consultation-button {
    background-color: #0076CE;
    color: #ffffff;
}

.consultation-button:hover {
    background-color: #00447C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 70, 148, 0.3);
}

.datasheet-button {
    background-color: #ffffff;
    color: #0076CE;
    border: 2px solid #0076CE;
}

.datasheet-button:hover {
    background-color: #f2f9ff;
    color: #00447C;
    border-color: #00447C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        margin-bottom: 15px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
}

/* Grid layout for larger screens */
@media (min-width: 768px) {
    .dell-poweredge-categories,
    .dell-poweredge-features,
    .dell-poweredge-use-cases {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    
    .dell-poweredge-categories h2,
    .dell-poweredge-features h2,
    .dell-poweredge-use-cases h2,
    .dell-poweredge-testimonials h2 {
        grid-column: 1 / -1;
    }
    
    .testimonial {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .dell-poweredge-testimonials {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .dell-poweredge-testimonials h2 {
        width: 100%;
    }
    
    .testimonial {
        flex-basis: calc(33.333% - 40px);
    }
}/* End custom CSS */