/* General styles */
html, body {
    height: 100%; /* Ensure the page takes up the full height of the viewport */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

.top-header {
    display: flex;
    justify-content: center; /* Center the header content horizontally */
    align-items: center; /* Center the header content vertically */
    padding: 20px;
    background-color: #f0f0f0; /* Light gray background */
}

.left-header, .right-header {
    margin: 0 10px; /* Add some margin between the two headers */
    font-family: 'Playfair Display', serif;
    font-size: 40px; /* Large font size */
    font-weight: 900; /* Bold font weight */
    text-transform: uppercase; /* Uppercase letters */
}

.left-header {
    color: #FFA07A; /* Orange color for CHANMALA */
}

.right-header {
    color: #ADD8E6; /* Light blue color for BETTERME */
}

.container {
    display: flex;
    align-items: stretch; /* Ensure both sections stretch to the same height */
    flex-grow: 1; /* Make the container take up the remaining height */
    width: 100vw;
    min-height: 100%; /* Use min-height to ensure proper scaling on mobile */
}

.left, .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    padding: 20px; /* Optional: Add padding for spacing */
}

.left.fitness {
    background-color: #FFA07A;
    color: white;
}

.right.massage {
    background-color: #ADD8E6;
    color: black;
}

.container .left img,
.container .right img {
    border-radius: 40px; /* Adds rounded corners to the images */
    display: block; /* Ensures no extra space below the image */
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ccc;
}

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

.right li {
    margin-bottom: 20px; /* Increased margin for better spacing */
}

.right address {
    font-style: normal;
}

.right button {
    width: 100%; /* Make button full width of its container */
    box-sizing: border-box; /* Ensure width includes padding */
}

.right a {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}

.right a button {
    background-color: #4CAF50; /* Green color for buttons */
    color: white; /* White text color */
}

/* Media query for smaller screens (e.g., phones) */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column; /* Stack the header content vertically */
        padding: 10px; /* Reduce padding */
    }

    .left-header, .right-header {
        font-size: 24px; /* Reduce font size for smaller screens */
        margin: 5px 0; /* Adjust margin */
        text-align: center; /* Center-align text */
    }

    .container {
        flex-direction: column; /* Stack the sections vertically */
        width: 100%; /* Ensure full width */
    }

    .left, .right {
        width: 100%; /* Make sections take full width */
        padding: 10px; /* Reduce padding */
    }

    .right {
        padding-bottom: 20px; /* Add extra padding to avoid overflow */
    }

    .container .left img,
    .container .right img {
        border-radius: 20px; /* Reduce border radius for smaller screens */
        max-width: 90%; /* Ensure images fit within the screen */
    }

    button {
        font-size: 14px; /* Reduce button font size */
        padding: 8px 16px; /* Adjust button padding */
    }

    .right ul {
        padding: 0 10px; /* Add padding to prevent text overflow */
    }

    .right li {
        margin-bottom: 15px; /* Adjust spacing between list items */
    }
}