/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333;
}

main {
    margin: 2rem 0;
}

/* Content sections */
.content-section {
    padding: 0rem 2rem;
}

.text-content {
    margin-bottom: 2rem;
}

.text-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-family: "Poppins", serif;
    color: #54add8;
}

.text-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    font-weight: 700;
}

.text-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: "Poppins", serif;
    text-align: justify;
}

.text-content ul {
    list-style-position: outside;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.text-content ul li {
    font-size: 1rem;
    font-family: "Poppins", serif;
    text-align: left;
}

.image-content img {
    max-width: 100%;
    height: auto;
    display: none;
}


/* Media queries */
@media screen and (min-width: 600px) {
  main {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
    .content-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    main {
        max-width: 85%;
        margin: auto;
        margin-top: 2rem;
    }
}

@media screen and (min-width: 1000px) {
   main {
        margin-bottom: 3rem;
        max-width: 80%;
        display: flex;
        justify-content: space-between;
        gap: 3rem;
    }
    .content-section {
        gap: 75px;
        align-items: center;
    }

    .content-section.reverse {
        gap: 80px;
    }

    .content-section,
    .content-section.reverse {
        margin: auto;
        padding: 0;
        padding-top: 3rem;
    }
}

@media screen and (min-width: 1200px) {
    main {
      max-width: 75%;
    }
}