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

.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.hero-section h1 {
    font-size: 2.5em;
    color: #10b981;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #94a3b8;
}

.hero-section .btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-section .btn.primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.hero-section .btn.secondary {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.features-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.features-section h2 {
    text-align: center;
    color: #10b981;
    margin-bottom: 30px;
}

.features-section > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.feature-card h3 {
    color: #3b82f6;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.feature-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: bold;
}

.quick-links {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.quick-links h2 {
    color: #10b981;
    margin-bottom: 20px;
}

.quick-links > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.quick-links a {
    background: rgba(59, 130, 246, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    color: #93c5fd;
    text-decoration: none;
}