.elementor-1267 .elementor-element.elementor-element-6ea7751{--display:flex;}.elementor-1267 .elementor-element.elementor-element-6ea7751:not(.elementor-motion-effects-element-type-background), .elementor-1267 .elementor-element.elementor-element-6ea7751 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1267 .elementor-element.elementor-element-e3b9499{font-family:"Inter", Sans-serif;font-weight:400;}/* Start custom CSS for text-editor, class: .elementor-element-e3b9499 */* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

.aws-snsbody {
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.aws-sns-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
}

.aws-sns-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #333;
}

.aws-sns-page {
  display: flex;
  align-items: center;
}

.aws-sns-page span {
  margin: 0 5px;
  font-weight: bold;
}

.aws-sns-arrows {
  display: flex;
  gap: 10px;
}

.aws-sns-arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 18px;
}

.aws-sns-arrow-btn:hover {
  background-color: #076ef4;
}

.aws-sns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.aws-sns-card {
  background-color: #f4f7fb;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-height: 220px;
}

.aws-sns-card:hover {
  transform: translateY(-5px);
}

.aws-sns-card img {
  width: 50px;
  height: 50px;
}

.aws-sns-card h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.3;
  margin-bottom: 10px;
}

.aws-sns-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 400;
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .aws-sns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .aws-sns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aws-sns-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .aws-sns-arrows {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .aws-sns-grid {
    grid-template-columns: 1fr;
  }

  .aws-sns-card {
    padding: 15px;
  }

  .aws-sns-card h3 {
    font-size: 16px;
  }

  .aws-sns-card p {
    font-size: 13px;
  }

  .aws-sns-arrow-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}/* End custom CSS */