body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f7ff;
    color: #333;
    text-align: center;
}

header {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-title {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.header-description {
    font-size: 18px;
    font-style: italic;
    margin-top: 10px;
}

.header-logo {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.header-logo img {
    height: 120px; /* Adjust the size of the logo */
    width: auto;
}

.main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    text-align: left;
}

.section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #004080;
    font-size: 24px;
}

p, ul {
    font-size: 18px;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
}

.divide-conquer-button {
    display: inline-block;
    background-color: #004080;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

.divide-conquer-button:hover {
    background-color: #002a5e;
}
