/* Minimal Template Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #000;
}

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

/* Features */
.features {
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .features .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}
