.elementor-1274 .elementor-element.elementor-element-23c1daf:not(.elementor-motion-effects-element-type-background), .elementor-1274 .elementor-element.elementor-element-23c1daf > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://www.woodlandltd.com/wp-content/uploads/2020/10/london.jpg");background-position:center left;}.elementor-1274 .elementor-element.elementor-element-23c1daf{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1274 .elementor-element.elementor-element-23c1daf > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1274 .elementor-element.elementor-element-e7a040e > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-1274 .elementor-element.elementor-element-e7a040e{text-align:center;}.elementor-1274 .elementor-element.elementor-element-4f1e86c > .elementor-widget-container{margin:0px 0px 0px 20px;padding:0px 200px 0px 200px;}.elementor-1274 .elementor-element.elementor-element-4f1e86c{text-align:center;}@media(min-width:768px){.elementor-1274 .elementor-element.elementor-element-df80bcc{width:72.465%;}.elementor-1274 .elementor-element.elementor-element-5faf2a5{width:26.806%;}}@media(min-width:1025px){.elementor-1274 .elementor-element.elementor-element-23c1daf:not(.elementor-motion-effects-element-type-background), .elementor-1274 .elementor-element.elementor-element-23c1daf > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-attachment:fixed;}}/* Start custom CSS for html, class: .elementor-element-dd1cee0 *//* Container splits the area into two columns */
  .split-container {
    display: flex;
    align-items: center;           /* Vertically centers content */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Left-side text container with centered text */
  .text-container {
    flex: 1;
    padding-right: 20px;
    text-align: center;  /* Center-aligns heading and paragraph text */
  }
  
  /* Modern, eye-catching word art styling */
  .word-art {
    font-size: 35px; /* Big, modern font size */
    font-weight: bold; /* Font weight */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .word-art-desc {
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #555;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  /* Right-side image container to hold a square image */
  .image-container {
    width: 300px;   /* Fixed width for a square image */
    height: 300px;  /* Height equals width */
    flex-shrink: 0;
    position: relative;
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Ensures the image covers the container without distortion */
    border-radius: 10px; /* Optional: rounded corners */
  }
  
  /* Fade-in animation for text (optional) */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .split-container {
      flex-direction: column;
      align-items: center;
    }
    .text-container {
      padding-right: 0;
      text-align: center;
      margin-bottom: 20px;
    }
  }/* End custom CSS */