/* Simple & Clean Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header / Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    background: transparent;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    /* Standard Blue */
}

.nav-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section - Centered */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding: 80px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #f0f7ff;
}

/* Features */
.features {
    padding: 60px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #111;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid #eee;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card i {
    color: #2563eb;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #888;
    border-top: 1px solid #eee;
    margin-top: 40px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links a {
        margin: 0 10px;
    }
}