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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 126, 7, 0.05) 0%, transparent 50%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: white;
    padding: 3rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

header h1 i {
    margin-right: 0.5rem;
    font-size: 2.5rem;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}


main {
    padding: 3rem 0;
}

section {
    background-color: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

h2 {
    color: #1a73e8;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2 i {
    font-size: 1.8rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-item i {
    font-size: 2.5rem;
    color: #1a73e8;
    opacity: 0.8;
}

.info-item p {
    margin: 0.25rem 0;
    font-size: 1.1rem;
}

.play-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0a7e07 0%, #0a6e06 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    margin-top: 1rem;
}

.play-store-link:hover {
    background: linear-gradient(135deg, #0a6e06 0%, #085e05 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 126, 7, 0.3);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e8eaed;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8 0%, #0a7e07 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #d2d3d6;
}

.app-card:hover::before {
    transform: scaleX(1);
}

.app-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 100%;
    object-fit: cover;
}

.app-card h3 {
    color: #1a73e8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.app-card p {
    color: #5f6368;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.7;
}

.app-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.app-stats span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.app-stats i {
    color: #1a73e8;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #f1f3f4;
    color: #1a73e8;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.privacy-link:hover {
    background-color: #e8f0fe;
    border-color: #1a73e8;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #0a7e07 0%, #0a6e06 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.play-store-btn:hover {
    background: linear-gradient(135deg, #0a6e06 0%, #085e05 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(10, 126, 7, 0.3);
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    background-color: #e8f0fe;
}

.contact-item i {
    font-size: 2rem;
    color: #1a73e8;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.contact-item a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #1557b0;
    text-decoration: underline;
}

footer {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #b8bec3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #666;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 2rem 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h1 i {
        font-size: 1.8rem;
        margin-right: 0.3rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
    
    h2 i {
        font-size: 1.5rem;
    }
    
    .app-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-grid {
        gap: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .play-store-link {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .app-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .privacy-link,
    .play-store-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.75rem;
    }
    
    header h1 i {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 1.5rem 1rem;
    }
    
    .app-card h3 {
        font-size: 1.25rem;
    }
    
    .app-card p {
        font-size: 0.95rem;
    }
}

/* Additional responsive improvements */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a73e8;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1557b0;
}