/* Applications Section */
.applications {
    background: white;
    padding: 50px 0;
}

.applications h2 {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #62B3AF;
    font-weight: bold;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.app-item {
    text-align: center;
}

.app-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
}

.app-image {
    width: 400px;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-svg {
    width: 360px;
    height: 360px;
    object-fit: contain;
}

.app-item p {
    color: #666;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}