/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.breakout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    justify-content: center;
    background-color: #fff;
}

/* Image container */
.image-container {
    flex: 1;
    min-width: 300px; /* Prevents image from becoming too small */
    max-width: 500px;
    margin-right: 20px; /* Adds space between image and text */
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text container */
.text-container {
    flex: 2;
    min-width: 300px;
    max-width: 700px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.text-container h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 15px;
}

.text-container ul {
    font-size:1.1rem;
    margin-left: 30px;
    margin-bottom:20px;
}

.text-container ol {
    font-size:1.1rem;
    margin-left: 30px;
    margin-bottom:20px;
}

