/* Start custom CSS for text-editor, class: .elementor-element-4d6fb3f *//* Dell Storage & Networking Page - Custom Styles */

/* Global Styles */
:root {
  --dell-primary: #0076CE;
  --dell-secondary: #007DB8;
  --dell-dark: #00447C;
  --dell-light: #E6F2F8;
  --dell-gray: #F5F5F5;
  --dell-text: #333333;
  --dell-white: #FFFFFF;
  --dell-border-radius: 6px;
  --dell-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --dell-transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif;
  color: var(--dell-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h2.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--dell-primary);
  margin: 20px auto 0;
}

h3.section-subtitle {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--dell-secondary);
}

h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

p {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dell-text);
  margin-bottom: 20px;
}

/* Intro Section */
.dell-intro-section {
  background-color: var(--dell-light);
  padding: 80px 0;
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* Solutions Sections */
.dell-solutions-section {
  padding: 80px 0;
  background-color: var(--dell-white);
}

.dell-solutions-section:nth-child(even) {
  background-color: var(--dell-gray);
}

.dell-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.dell-product-card {
  background-color: var(--dell-white);
  border-radius: var(--dell-border-radius);
  padding: 30px;
  box-shadow: var(--dell-box-shadow);
  transition: var(--dell-transition);
}

.dell-solutions-section:nth-child(even) .dell-product-card {
  background-color: var(--dell-white);
}

.dell-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon img {
  max-width: 100%;
  max-height: 100%;
}

.dell-link {
  color: var(--dell-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--dell-transition);
}

.dell-link i {
  margin-left: 5px;
  transition: var(--dell-transition);
}

.dell-link:hover {
  color: var(--dell-secondary);
}

.dell-link:hover i {
  transform: translateX(3px);
}

/* Benefits Section */
.dell-benefits-section {
  background-color: var(--dell-dark);
  color: var(--dell-white);
  padding: 80px 0;
}

.dell-benefits-section .section-title {
  color: var(--dell-white);
}

.dell-benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.dell-benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  background-color: var(--dell-primary);
  color: var(--dell-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 24px;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  color: var(--dell-white);
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--dell-light);
  margin-bottom: 0;
}

/* Use Cases Section */
.dell-use-cases-section {
  padding: 80px 0;
  background-color: var(--dell-gray);
}

.dell-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.dell-use-case-card {
  background-color: var(--dell-white);
  border-radius: var(--dell-border-radius);
  padding: 30px;
  box-shadow: var(--dell-box-shadow);
  text-align: center;
  transition: var(--dell-transition);
}

.dell-use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
  width: 70px;
  height: 70px;
  background-color: var(--dell-light);
  color: var(--dell-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.use-case-icon i {
  font-size: 30px;
}

/* Validation Section */
.dell-validation-section {
  padding: 80px 0;
  background-color: var(--dell-white);
}

.dell-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.dell-testimonial {
  background-color: var(--dell-light);
  border-radius: var(--dell-border-radius);
  padding: 30px;
  transition: var(--dell-transition);
}

.testimonial-content blockquote {
  margin: 0 0 20px;
  padding: 0;
  border-left: none;
  font-style: italic;
}

.testimonial-source {
  font-weight: 600;
  text-align: right;
  color: var(--dell-secondary);
}

/* CTA Section */
.dell-cta-section {
  background-color: var(--dell-primary);
  padding: 80px 0;
  text-align: center;
  color: var(--dell-white);
}

.cta-title {
  color: var(--dell-white);
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-description {
  color: var(--dell-light);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.dell-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dell-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--dell-border-radius);
  text-decoration: none;
  text-align: center;
  transition: var(--dell-transition);
}

.dell-button.primary {
  background-color: var(--dell-white);
  color: var(--dell-primary);
}

.dell-button.primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.dell-button.secondary {
  background-color: transparent;
  color: var(--dell-white);
  border: 2px solid var(--dell-white);
}

.dell-button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 32px;
  }
  
  h2.section-title {
    font-size: 28px;
  }
  
  h3.section-subtitle {
    font-size: 22px;
  }
  
  .dell-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  
  h2.section-title {
    font-size: 26px;
  }
  
  .dell-intro-section,
  .dell-solutions-section,
  .dell-benefits-section,
  .dell-use-cases-section,
  .dell-validation-section,
  .dell-cta-section {
    padding: 60px 0;
  }
  
  .dell-benefits-list li {
    flex-direction: column;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .dell-product-grid,
  .dell-use-cases-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */