/* Modern Professional Theme */
:root {
    --primary: #4361EE;
    /* Trustworthy blue */
    --secondary: #3A0CA3;
    /* Darker blue */
    --accent: #4CC9F0;
    /* Light blue */
    --text: #333333;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
    background: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
}

nav a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.number {
    display: inline-block;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-info {
    margin-bottom: 2rem;
}

.footer-info a {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}