/* General Landing Page Styling */
.android-landing, .ios-landing {
    margin: 30px auto;
    max-width: 600px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff; /* Default text color set to white */
}

/* Headers */
.android-landing h1,
.ios-landing h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Paragraphs */
.android-landing p,
.ios-landing p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Instructions List */
.android-landing ol,
.ios-landing ol {
    margin-left: 20px;
    padding-left: 20px;
}

.android-landing ol li,
.ios-landing ol li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Centering the Download Button */
.android-landing .btn-download,
.ios-landing .btn-download {
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto; /* Center the button horizontally */
    background-color: #28a745;
    color: #fff; /* Button text color */
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.android-landing .btn-download:hover,
.ios-landing .btn-download:hover {
    background-color: #218838;
}

/* Alerts and Notes */
.android-landing p[style="color: red;"],
.ios-landing p[style="color: red;"] {
    font-weight: bold;
    color: #ffcccc !important; /* Light red for alerts */
}
