:root {
    --primary-color: #d36728;
    --secondary-color: #2E86DE;
    --text-color: #555;
    --background-color: #fcf7eb;
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

header {
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    background-color: #fcf7eb;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 2rem;
    width: 100%;
}

h1 {
    color: #d36728;
    font-size: 2.5em;
    margin: 0;
}

h2.section-title {
    text-align: center;
    margin: 30px 0 20px;
    color: #d36728;
    font-size: 1.8em;
    background-color: white;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.apps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.app-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.app-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.app-card p {
    margin-bottom: 1rem;
}

.app-card ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.app-card ul li {
    margin-bottom: 0.5rem;
}

.app-card ul li:before {
    content: "• ";
    color: var(--primary-color);
}

.app-card ul li a {
    color: var(--secondary-color);
    text-decoration: none;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.store-buttons img {
    height: 40px;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.download-btn {
    display: inline-block;
    background-color: #d36728;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.contact {
    text-align: center;
    margin: 3rem 0;
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
}

footer {
    text-align: center;
    margin: 20px 0;
    color: #888;
}

.content {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.app-section {
    margin-bottom: 50px;
}

header img {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.app-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.app-title img {
    height: 30px;
    width: auto;
}

.app-title h3 {
    margin: 0;
    font-size: 1.5em;
    color: #d36728;
}

@media (min-width: 768px) {
    main {
        padding: 0 2rem;
    }
}

.download-buttons, .store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.download-btn {
    display: block;
    margin: 20px auto;
    text-align: center;
    width: fit-content;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.download-buttons img {
    height: 45px;
    width: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.download-buttons img {
    width: 180px;
    object-fit: contain;
    height: auto;
}

.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8em;
}

.language-switcher select {
    margin-left: 5px;
    font-size: 0.8em;
}

.language-switcher label {
    font-weight: bold;
    color: #d36728;
}