/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Main Wrapper */
.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

header h1 {
    font-size: 28px;
    color: #333;
}

header p {
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

/* Download Links */
.download-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.download-links .link-ios a,
.download-links .link-android a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.link-ios a {
    background-color: #4CAF50;
}

.link-android a {
    background-color: #2196F3;
}

.link-ios a:hover {
    background-color: #45a049;
}

.link-android a:hover {
    background-color: #1976D2;
}

/* Description Section */
.description {
    padding: 20px;
    line-height: 1.8;
}

.description h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.description p {
    font-size: 16px;
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    color: #888;
    font-size: 14px;
}
