/* FinEasy specific styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item p {
    color: var(--subtle-color);
    line-height: 1.8;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduced from 300px to 200px */
    gap: 1.5rem; /* Slightly smaller gap */
    padding: 1rem 0;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 200px; /* Added max-width to constrain size */
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.update-container {
    background: var(--accent-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.update-date {
    color: var(--subtle-color);
    font-size: 0.9rem;
}

.update-summary {
    color: var(--subtle-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.update-category {
    margin-bottom: 2rem;
}

.update-category h3 {
    margin-bottom: 1rem;
}

.download-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.app-store-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.app-store-button span {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.app-store-button strong {
    font-size: 1.5rem;
    font-weight: 400;
}

.app-store-button:hover {
    background: #333;
    transform: translateY(-3px);
}

.compatibility {
    color: var(--subtle-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .update-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .update-date {
        margin-top: 0.5rem;
    }
}
