/* Custom Styles for Subpages */
.page-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #e8eef3 100%);
    border-bottom: 1px solid #e9ecef;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 80px 20px;
    background-color: var(--bg-secondary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary-light);
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-primary-light) 0%, #dbe7f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px;
    flex: 1;
}

.card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.list-feature {
    list-style: none;
    padding: 0;
}

.list-feature li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.list-feature li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.list-content h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.list-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 480px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}