.elementor-5668 .elementor-element.elementor-element-618e555{--display:flex;}/* Start custom CSS for html, class: .elementor-element-97a4efc */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f8fb;
  color: #1f2937;
  line-height: 1.7;
}

/* CONTAINER */
.rr-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.rr-hero {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  animation: rrFadeDown 0.8s ease;
}

.rr-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.rr-hero p {
  margin-top: 12px;
  opacity: 0.9;
}

/* IMAGES */
.rr-images {
  background: #ffffff;
}

.rr-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.rr-image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rr-image-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.rr-content {
  animation: rrFadeUp 0.8s ease;
}

.rr-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.rr-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.rr-card ul {
  padding-left: 20px;
}

.rr-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.rr-card table th,
.rr-card table td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.rr-highlight {
  border-left: 6px solid #2563eb;
}

.rr-note {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

/* ANIMATIONS */
@keyframes rrFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rrFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */