/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}
.container {
    max-width: 1000px;
    margin: auto;
}
.zigzag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.zigzag:nth-child(even) {
    flex-direction: row-reverse;
}
.zigzag img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.description {
    width: 50%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .zigzag {
        flex-direction: column !important;
        text-align: center;
    }
    .zigzag img, .description {
        width: 100%;
    }
}

/* Bullets */

.custom-list {
    list-style-type: disc; /* Default bullet */
    padding-left: 20px;
  }
  
  .custom-list li {
    margin-bottom: 5px;
  }