/* styles.css */
body {
    margin: 0;
    padding: 0;
    background: #0099cc; /* Background color (blue) */
    font-family: Arial, sans-serif;
    text-align: center;
    color: #fff; /* Text color (white) */
}

header {
    background: #0099cc; /* Header background color (blue) */
    padding: 20px 0;
}

header img {
    display: block;
    margin: 0 auto;
    width: 100px; /* Adjust the width of your logo */
}

h1 {
    font-size: 36px;
}

p {
    font-size: 24px;
}

.split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.text-section {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.image-section {
    flex: 1;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}