.about {
    color: #5cb85c;
    text-align: center;
    font-weight: 900;
    padding: 40px 20px;
}

.about h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--color-fg);
    opacity: 0.9;
}

.platforms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.platform-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    background: var(--color-left);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.platform-section h2 {
    color: #5cb85c;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.download-buttons a {
    width: 80%;
    text-decoration: none;
    color: white;
}

.download-button {
    width: 100%;
    height: 60px;
    background-color: #5cb85c;
    border: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 1.2em;
    font-weight: 600;
}

.download-button:hover {
    background-color: #4da84d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.store-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.material-icons {
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    .platform-section {
        min-width: 250px;
    }
    
    .about h1 {
        font-size: 2.5em;
    }
    
    .about h2 {
        font-size: 1.4em;
    }
}
