* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.app-header {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* App icon styles moved to common classes below */

.app-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.app-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.download-btn:hover {
    background: #0056b3;
}

.download-btn.google-play {
    background: #01875f;
}

.download-btn.google-play:hover {
    background: #016d4b;
}

.section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    text-align: center;
}

.apps-section {
    background: transparent;
    padding: 2rem 0;
    box-shadow: none;
    margin-bottom: 0;
}

.apps-section h2 {
    margin-bottom: 2.5rem;
    position: relative;
}

.apps-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007AFF;
    margin: 0.75rem auto 0;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.breadcrumb a {
    color: #007AFF;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.app-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.app-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.app-card:hover .app-card-arrow {
    transform: translateY(-50%) translateX(4px);
    color: #007AFF;
}

.app-card:last-child {
    margin-bottom: 0;
}

.app-card-content {
    flex: 1;
    padding-right: 3rem;
}

.app-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
    display: flex;
    align-items: center;
}

.app-card:hover h3 {
    color: #007AFF;
}

.app-card .app-description {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.app-card-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ccc;
    transition: all 0.2s ease;
}

/* =================
   COMMON APP ICONS
   ================= */
.app-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
}

.app-icon-medium {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    vertical-align: middle;
    margin-right: 12px;
}

.app-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .app-title {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}