/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #e0e5ec;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    background: #e0e5ec;
    border-bottom: none;
}

.logo h1 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px #c4c9d0, -2px -2px 4px #ffffff;
}

.company-tagline {
    font-size: 16px;
    color: #6c757d;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10px 0;
    background: #e0e5ec;
}

.hero h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.hero p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Apps Section */
.apps-section {
    padding: 60px 0;
    padding-top: 10px;
    background: #e0e5ec;
}

.apps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

.app-card {
    flex: 0 0 calc(50% - 30px);
    max-width: 500px;
    margin: 0 15px 30px 15px;
    background: #e0e5ec;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        8px 8px 16px #c4c9d0,
        -8px -8px 16px #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: #e0e5ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 
        4px 4px 8px #c4c9d0,
        -4px -4px 8px #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-icon i {
    font-size: 24px;
    color: #6c757d;
}

.app-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.app-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 16px;
}

.app-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-tag {
    background: #e0e5ec;
    color: #6c757d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
    box-shadow: 
        2px 2px 4px #c4c9d0,
        -2px -2px 4px #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
}

.store-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: #e0e5ec;
    color: #6c757d;
    box-shadow: 
        4px 4px 8px #c4c9d0,
        -4px -4px 8px #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-link:hover {
    box-shadow: 
        6px 6px 12px #c4c9d0,
        -6px -6px 12px #ffffff;
}

.store-link:active {
    box-shadow: 
        2px 2px 4px #c4c9d0,
        -2px -2px 4px #ffffff;
}

/* Company Info */
.company-info {
    background: #e0e5ec;
    padding: 60px 0;
    text-align: center;
}

.company-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.company-info p {
    font-size: 16px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-link:hover {
    background: #4a6741;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 0;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .apps-section {
        padding: 40px 0;
    }
    
    .apps-container {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .app-card {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 0 20px 0;
        padding: 20px;
        padding-top: 30px;
    }
    
    .app-links {
        flex-direction: column;
        align-items: center;
    }
    
    .store-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .company-info {
        padding: 40px 0;
    }
    
    .company-info h3 {
        font-size: 20px;
    }
    
    .company-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .app-card {
        padding: 16px;
        padding-top: 30px;
    }
    
    .app-content h3 {
        font-size: 20px;
    }
    
    .app-subtitle {
        font-size: 14px;
    }
    
    .app-description {
        font-size: 13px;
    }
}