/* ==========================
   Reset
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================
   Body
========================== */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* ==========================
   Header
========================== */

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* ==========================
   Buttons
========================== */

.button-container {
    margin-top: 15px;
}

.button-container button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.button-container button:hover {
    background-color: #0056b3;
}

/* ==========================
   Main Layout
========================== */

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

/* ==========================
   Side Areas
========================== */

.left-side,
.right-side {
    width: 20%;
    text-align: center;
}

.left-side img,
.right-side img {
    width: 100%;
    border-radius: 10px;
}

/* ==========================
   Main Content
========================== */

main {
    width: 60%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h2 {
    margin-bottom: 15px;
}

main p {
    line-height: 1.6;
}

/* ==========================
   Responsive Layout
========================== */

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-side,
    .right-side,
    main {
        width: 100%;
    }

    .left-side img,
    .right-side img {
        max-width: 250px;
    }
}
