.elementor-4224 .elementor-element.elementor-element-390e7af7{--display:flex;}.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 );}/* Start custom CSS for text-editor, class: .elementor-element-72206ff0 */body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.ebook-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  gap: 40px;
}

.ebook-image img {
  max-width: 300px;
  border-radius: 4px;
}

.content {
  max-width: 600px;
}

.content h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.content h1 span {
  color: #aaa;
}

.content h1 strong {
  color: #c39e56;
}

.content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

ul li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  content: "•";
  color: #c39e56;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cta-button {
  background: linear-gradient(45deg, #f3d188, #c39e56);
  color: black;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
}

.cta-button:hover {
  background: linear-gradient(45deg, #e3c377, #a57d3d);
  transform: scale(1.05);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .ebook-container {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: center;
    
  }

  .ebook-image img {
    max-width: 80%;
    text-align: center;
  }

  .content {
    margin-left: 0;
    text-align: left;
  }

  .content h1 {
    font-size: 25px;
    text-align: center;
  }

  .content p {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 14px;
  }
}/* End custom CSS */