body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #fad0c4 75%, #fbc2eb 100%);
    color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.content {
    text-align: left;
    margin: 5vh auto;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.content h1, .content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    margin-bottom: 1.5rem;
}

.logo {
    width: 300px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-store-button {
    height: 60px;
}

.footer {
    width: 100%;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a,
.social-icons a,
.content a {
    color: #333333;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover,
.social-icons a:hover,
.content a:hover {
    color: #ff6f61;
}

ul, ol {
    list-style-position: outside;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

@media screen and (max-width: 600px) {
    .app-stores {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-button {
        margin-bottom: 1rem;
    }
}
