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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4361ee;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #4361ee;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 16px;
    max-width: 800px;
}

/* Apps Section */
.apps {
    padding: 100px 0;
    background: #f8f9ff;
}

.apps h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a2e;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.app-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4361ee 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.app-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.app-card p {
    color: #555;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.contact p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 24px;
}

.email-link {
    display: inline-block;
    font-size: 1.25rem;
    color: #4361ee;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 32px;
    border: 2px solid #4361ee;
    border-radius: 8px;
    transition: all 0.2s;
}

.email-link:hover {
    background: #4361ee;
    color: white;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 24px;
}

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

.footer-links a:hover {
    color: #fff;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.legal-page .last-updated {
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-page p,
.legal-page ul,
.legal-page li {
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #4361ee;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
