.elementor-162 .elementor-element.elementor-element-889e1b4{--display:flex;}.elementor-162 .elementor-element.elementor-element-1bd88be .elementor-wrapper{--video-aspect-ratio:1.77777;}.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-162 .elementor-element.elementor-element-2229ac3{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for container, class: .elementor-element-889e1b4 */body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    text-align: center;
    margin: 0;
    padding: 20px;
}
.dark body {
    background-color: #1f2937;
    color: #f9fafb;
}
h1, h2, h3 {
    margin: 0.5em 0;
}
.title-lg { font-size: 1.125rem; }
.title-xl { font-size: 1.25rem; }
.subtitle-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5c1c00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
}
.button:hover {
    background-color: #1a0000;
}
img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
.w-40 { width: 40%; }
.w-full { width: 100%; }/* End custom CSS */
/* Start custom CSS */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  text-align: center;
  padding: 20px;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #1f2937;
    color: #f9fafb;
  }
}

h1, h2, h3 {
  margin: 0.5em 0;
}

.title-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.title-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.subtitle-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5c1c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px 0;
  transition: background-color 0.15s ease-in-out;
  animation: pulse 1s infinite;
}

.button:hover {
  background-color: #1a0000;
}

img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  animation: fade-in 0.2s ease-in-out forwards;
}

.w-40 {
  width: 40%;
}

.w-full {
  width: 100%;
}

div {
  margin-bottom: 1rem;
}

@keyframes pulse {
  0% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
  100% { transform: scale(0.98); }
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}/* End custom CSS */