/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 07 2025 | 20:43:55 */
*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .feature-wrapper {
      max-width: 1320px;
      margin: 0 auto;
    }

    .feature-section {
      display: flex;
      width: 100%;
      align-items: stretch;
    }

    .feature-image, .feature-content {
      flex: 0 0 50%; /* ambas mitades iguales */
    }

    .feature-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-content {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #2c2e79;
      color: #ffffff;
	  
    }

    .feature-content h1 {
      font-family: 'Lora', serif;
      font-size: 3.3rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: #ffffff;
	  text-align: center;
    }

    .feature-content p {
      font-size: 2.5rem;
      line-height: 1.9;
      text-align: justify;
      color: #f2f2f2;
	  padding:30px;
	  font-family: 'Lora', serif !important;
    }

    @media (max-width: 768px) {
      .feature-section {
        flex-direction: column;
      }

      .feature-image, .feature-content {
        flex: none;
        width: 100%;
      }

      .feature-image img {
        height: auto;
      }

      .feature-content {
        padding: 2rem 1.5rem;
      }
    }