.elementor-2250 .elementor-element.elementor-element-ae1d29f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-39dd24f */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2ecc40;
  --blue: #1a6fd4;
  --orange: #f5a623;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-border: #e0e0e0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

body {
  background: var(--white);
  font-family: var(--font-body);
  color: var(--black);
  width: 100%;
  padding: clamp(24px, 5vw, 56px) clamp(12px, 4vw, 32px);
}

/* ── Section ── */
.tips-section {
  width: 100%;
}

.tips-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* ── Header ── */
.tips-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.tips-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tips-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.08;
  margin-bottom: 18px;
}

.title-accent {
  color: var(--green);
}

.header-divider {
  width: 56px;
  height: 3px;
  background: var(--green);
  margin: 0 auto;
  border-radius: 2px;
}

/* ── Intro ── */
.tips-intro {
  background: var(--gray-light);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px);
  margin-bottom: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tips-intro p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  color: #444;
  line-height: 1.75;
}

.tips-intro p strong {
  color: var(--black);
  font-weight: 700;
}

/* ── Tips List ── */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.5vw, 22px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

/* ── Tip Card ── */
.tip-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 3vw, 24px);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: clamp(16px, 3vw, 26px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}

/* Alternate border accent colors */
.tip-card:nth-child(1) { border-top: 3px solid var(--green); }
.tip-card:nth-child(2) { border-top: 3px solid var(--blue); }
.tip-card:nth-child(3) { border-top: 3px solid var(--orange); }
.tip-card:nth-child(4) { border-top: 3px solid var(--green); }
.tip-card:nth-child(5) { border-top: 3px solid var(--blue); }

/* Number badge */
.tip-number {
  flex-shrink: 0;
  width: clamp(42px, 6vw, 54px);
  height: clamp(42px, 6vw, 54px);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.tip-card:nth-child(1) .tip-number { background: var(--green); }
.tip-card:nth-child(2) .tip-number { background: var(--blue); }
.tip-card:nth-child(3) .tip-number { background: var(--orange); color: var(--black); }
.tip-card:nth-child(4) .tip-number { background: var(--green); }
.tip-card:nth-child(5) .tip-number { background: var(--blue); }

/* Card content */
.tip-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tip-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.15;
}

.tip-content p {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2vw, 0.97rem);
  font-weight: 400;
  color: #444;
  line-height: 1.75;
}

/* ── Conclusion ── */
.tips-conclusion {
  background: #111827;
  border-radius: 10px;
  padding: clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px);
  border: 1px solid #2a3a4a;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
}

.tips-conclusion h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.tips-conclusion p {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2vw, 0.97rem);
  font-weight: 400;
  color: #c0ccd8;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .tip-card {
    flex-direction: column;
    gap: 12px;
  }

  .tip-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .tips-title {
    font-size: 1.6rem;
  }
}/* End custom CSS */