:root {
  --primary: #0056b3;
  --secondary: #17a2b8;
  --light: #f8f9fa;
  --dark: #343a40;
  --background: #f9fafb;
  --azure-blue: #0078d4;
  --azure-light: #50e6ff;
  --azure-dark: #005a9e;
  --factory-gray: #505050;
}

.cloud-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--azure-blue);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--factory-gray);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cloud-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.cloud-card {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cloud-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--azure-blue), var(--azure-dark));
  color: white;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.card-header .icon {
  font-size: 2rem;
  margin-left: 10px;
}

.card-body {
  padding: 25px;
  background-color: #e9ecef;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-body p {
  margin: 0;
  line-height: 1.6;
}

.card-footer {
  background-color: #d1d9e6;
  padding: 25px;
  border-top: 1px solid rgba(0, 120, 212, 0.1);
}

.card-footer p {
  margin: 0;
  line-height: 1.6;
}

.summary-card {
  background: linear-gradient(135deg, var(--azure-blue), var(--secondary));
  color: white;
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cloud-icon {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .cloud-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cloud-container {
    grid-template-columns: 1fr;
  }
}