/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 30px;
    background-color: #222;
    color: #fff;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

.top-breakout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    justify-content: center;
    background-color: #fff;
}

.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: 512px;
    max-width: 768px;
    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;
    padding: 20px;
    min-width: 500px;
    max-width: 1000px;
    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 p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.text-container h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.text-container ul {
    list-style-type: square;
    margin-left: 20px;
}

/* Basic table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

/* Header row */
th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

/* Hover effect for rows */
tr:hover {
    background-color: #f2f2f2;
}

/* Zebra striping for rows */
tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Table responsiveness */
@media (max-width: 768px) {
    table {
        width: 100%;
        font-size: 14px;
    }

    th, td {
        padding: 8px;
    }
}
