/* Main Content */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

h1, h2 {
    color: #7dd3fc;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* New Section Styles */
.section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.platform-logos {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.platform-logos img {
    max-width: 200px;
    height: 80px;
    margin: 0 1rem;
}

/* Footer Styles */
.footer {
    padding: 1rem;
    text-align: center;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 10px;
    color: #e2e8f0;
    margin-top: auto; /* Push footer to the bottom */
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .content {
        padding: 1rem;
    }
}