body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #556ee6 0%, #fd7e14 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    box-sizing: border-box;
}

.hero-container {
    background: white;
    border-radius: 20px;
    padding: 2.4rem 2.8rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 94%;
    text-align: center;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-container img {
    max-width: 240px;
    height: auto;
}

.tagline {
    font-size: 1.1rem;
    color: #556ee6;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    color: #6c757d;
    text-align: left;
    margin: 0.75rem auto 1.5rem;
    max-width: 560px;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 0.35rem;
}

.purpose-card {
    background: #f8f9fb;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    margin-bottom: 1.75rem;
}

.purpose-title {
    color: #343a40;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.purpose-text {
    color: #6c757d;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.purpose-list {
    color: #6c757d;
    margin: 0 0 0.6rem 1.1rem;
    padding: 0;
    line-height: 1.6;
}

.purpose-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-primary {
    background: #fd7e14;
    border: none;
    padding: 12px 40px;
    font-size: 1.05rem;
    border-radius: 50px;
    margin: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e66a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.btn-outline-primary {
    border: 2px solid #556ee6;
    color: #556ee6;
    padding: 12px 40px;
    font-size: 1.05rem;
    border-radius: 50px;
    margin: 10px;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #556ee6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(85, 110, 230, 0.3);
}

.footer-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: #556ee6;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fd7e14;
    text-decoration: underline;
}

.footer-links .text-muted {
    color: #dee2e6 !important;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 2rem 1.6rem;
        width: 100%;
    }

    .logo-container img {
        max-width: 200px;
    }
}
