.cosme-section {
    padding: 80px 60px 40px 60px;
    font-family: 'Arial', sans-serif;
    background: #fff;
}

.cosme-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cosme-text {
    flex: 1;
    padding-right: 30px;
}

.cosme-text h1 {
    color: #027F00;
    font-size: 50px;
    font-weight: bolder;
    -webkit-text-stroke: 1px #027F00;
    margin-bottom: 40px;
}

.cosme-text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cosme-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cosme-img {
    flex: 1;
    max-width: 450px;
}

.cosme-img img {
    width: 100%;
    height: 500px; 
    border-radius: 10px;
    object-fit: cover;
    object-position: center top; 
}

.cosme-img-mobile {
    display: none; 
  }
  
  .cosme-img-desktop {
    display: block;
  }

@media (max-width: 768px) {
    .cosme-container {
      flex-direction: column;
      text-align: left;
    }

    .cosme-text h1 {
      color: #027F00;
      font-size: 40px;
      font-weight: bolder;
      margin-bottom: 35px;
      text-align: center;
  }
  
    .cosme-img-desktop {
      display: none; 
    }
  
    .cosme-img-mobile {
      display: block;
      margin-top: 20px;
    }
  
    .cosme-img-mobile img {
      width: 310px;
      height: 500px;
      border-radius: 10px;
      object-fit: cover;
      margin-bottom: 30px;
    }
  }
