/* Home page specific styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.content {
    flex: 1;
}

.home-container {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin: 28px;
    height: 100%;
}

/* NEW: Left stacked section wrapper */
.left-sections {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1.9;
}

/* Left main section */
.main-section {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-height: calc(50vh - 100px);
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.large-description {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #6F4242;
}

.download-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.large-download-button {
    display: inline-block;
    margin-top: 15px;
    padding: 20px 40px;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    background-color: blue;
    border-radius: 8px;
    font-weight: bold;
}

.large-download-button:hover {
    background-color: #45a049;
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Right container for two sections */
.right-sections {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1.1;
}

/* Individual right sections */
.downlod-unit-for-right-side {
    background-color: white;
    flex: 1;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.short-download-description-for-right-side {
    flex: 8;
    padding: 20px;
}

.bottom-section {
    flex: 2;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.divider {
    background-color: #ee0099;
    height: 2px;
    margin: 0;
}

.get-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    background-color: blue;
    border-radius: 8px;
    font-weight: bold;
}

.get-button:hover {
    background-color: #45a049;
}

.get-button + .download-icon {
    margin-left: 15px;
    width: 20px;
    height: 20px;
}

/* ======== Custom hyphen bullets ======== */
.custom-bullets {
    list-style-type: none;
    padding-left: 20px;
    margin: 0;
    padding: 0;
}

.custom-bullets li {
    position: relative;
    padding-left: 20px;
}

.custom-bullets li::before {
    content: "-";
    color: red;
    font-weight: bold;
    position: absolute;
    left: 0;
}
/* ======== End custom bullets ======== */
